Skip to content
On this page

Home > @taiyuuki/utils > is_null

is_null() function

该函数检查给定值是否为空。

Signature:

typescript
declare function is_null(n: any): n is null;
declare function is_null(n: any): n is null;

Parameters

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

Returns:

n is null

函数 is_null 返回一个布尔值,指示输入的 n 是否为空。

Released under the MIT License.