UNPKG

264 BJavaScriptView Raw
1var staticWindow = require('./staticWindow')
2
3/**
4 * 判断是否Window对象
5 *
6 * @param {Object} obj 对象
7 * @return {Boolean}
8 */
9function isWindow (obj) {
10 return staticWindow && !!(obj && obj === obj.window)
11}
12
13module.exports = isWindow