UNPKG

241 BJavaScriptView Raw
1/**
2 * Export window or global object depending on the environment
3 */
4export const root = (typeof self === 'object' && self.self === self && self) ||
5 (typeof global === 'object' && global.global === global && global) ||
6 this;