freeGlobal.js 236 Bytes
Newer Older
徐立's avatar
徐立 committed
1 2
/** Detect free variable `global` from Node.js. */
/** 从Node.js中检测自由变量' global '。 */
3 4
const freeGlobal =
	typeof global === 'object' && global !== null && global.Object === Object && global;
徐立's avatar
徐立 committed
5

6
export default freeGlobal;