1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-04-24 19:20:40 +02:00
TableFilter/src/root.js
2016-05-08 15:26:52 +10:00

7 lines
235 B
JavaScript

/**
* 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;