"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Is the given object a Window object * * @param obj - The object to check * @return Is it a Window object or not */ function isWindow(obj) { return !!obj && typeof obj.self !== 'undefined'; } exports.default = isWindow;