1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-05-04 07:33:18 +02:00
TableFilter/src/root.js

7 lines
235 B
JavaScript
Raw Permalink Normal View History

2016-05-08 07:26:52 +02:00
/**
* Export window or global object depending on the environment
*/
export const root = (typeof self === 'object' && self.self === self && self) ||
(typeof global === 'object' && global.global === global && global) ||
this;