Skip to content
On this page

Home > @taiyuuki/utils > is_window_or_element

is_window_or_element() function

该函数检查给定对象是否是元素或window。

Signature:

typescript
declare function is_window_or_element(el: any): el is Element | Window;
declare function is_window_or_element(el: any): el is Element | Window;

Parameters

ParameterTypeDescription
elany参数 el 可以是任何数据类型。

Returns:

el is Element | Window

函数 is_window_or_element 返回一个布尔值,表示给定对象是否是元素或window。

Released under the MIT License.