mirror of
https://github.com/koalyptus/TableFilter.git
synced 2026-03-16 23:55:46 +01:00
6 lines
235 B
JavaScript
6 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;
|