Skip to content
On this page

Home > @taiyuuki/utils > is_void

is_void() function

该函数检查给定值是否为 null 或 undefined,或者它是否为 NaN 的数字。

Signature:

typescript
declare function is_void(t: any): t is null | undefined;
declare function is_void(t: any): t is null | undefined;

Parameters

ParameterTypeDescription
tany参数 tany 类型,这意味着它可以是任何数据类型。

Returns:

t is null | undefined

一个布尔值,指示输入参数“t”是否“null”或“undefined”。

Released under the MIT License.