UNPKG

simd

Version:
10 lines (7 loc) 275 B
/* global window, global, self */ module.exports = function getGlobal() { if (typeof window !== 'undefined') { return window; } if (typeof global !== 'undefined') { return global; } if (typeof self !== 'undefined') { return self; } return Function('return this')(); };