All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.client.env.mjs Maven / Gradle / Ivy

There is a newer version: 5.3.5
Show newest version
const context = (() => {
    if (typeof globalThis !== 'undefined') {
        return globalThis;
    }
    else if (typeof self !== 'undefined') {
        return self;
    }
    else if (typeof window !== 'undefined') {
        return window;
    }
    else {
        return Function('return this')();
    }
})();
// assign defines
const defines = __DEFINES__;
Object.keys(defines).forEach((key) => {
    const segments = key.split('.');
    let target = context;
    for (let i = 0; i < segments.length; i++) {
        const segment = segments[i];
        if (i === segments.length - 1) {
            target[segment] = defines[key];
        }
        else {
            target = target[segment] || (target[segment] = {});
        }
    }
});
//# sourceMappingURL=env.mjs.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy