claude-web/node_modules/@interactjs/utils/isWindow.js

12 lines
336 B
JavaScript
Raw Normal View History

2026-02-23 02:23:38 +00:00
/**
* interact.js 1.10.27
*
* Copyright (c) 2012-present Taye Adeyemi <dev@taye.me>
* Released under the MIT License.
* https://raw.github.com/taye/interact.js/main/LICENSE
*/
var isWindow = thing => !!(thing && thing.Window) && thing instanceof thing.Window;
export { isWindow as default };
//# sourceMappingURL=isWindow.js.map