UNPKG

@amaui/utils

Version:
7 lines (6 loc) 217 B
const getEnvironment = () => { if (typeof self !== 'undefined') return self; if (typeof window !== 'undefined') return window; if (typeof global !== 'undefined') return global; }; export default getEnvironment;