Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/isWindow.js
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

14 lines
251 B
JavaScript

var staticWindow = require('./staticWindow')
/**
* 判断是否Window对象
*
* @param {Object} obj 对象
* @return {Boolean}
*/
function isWindow (obj) {
return staticWindow && !!(obj && obj === obj.window)
}
module.exports = isWindow