1 2 3 4 5 6 7 8 9 | 1× 1× | /** A place to store global variables. */ const _global = (typeof global !== 'undefined') ? global : window const substanceGlobals = _global.hasOwnProperty('Substance') ? _global.Substance : _global.Substance = { DEBUG_RENDERING: true } export default substanceGlobals |