不太明白里面的
typeof process === 'object' 和 typeof require === 'function'和global === 'object',并且为什么他们全等就能证明是global对象
typeof self 是什么意思呢?
为什么他们能实现一样的效果?
该例子来自ruan大神
//该函数证明获取到顶层对象
(typeof window !== 'undefined'
? window
: (typeof process === 'object' &&
typeof require === 'function' &&
typeof global === 'object')
? global
: this);
//该函数证明获取到顶层对象
var getGlobal = function () {
if (typeof self !== 'undefined') { return self; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
throw new Error('unable to locate global object');
};
胡说叔叔
相关分类