Skip to content
On this page

Home > @taiyuuki/utils > is_object

is_object() function

该函数检查给定值是否是对象而不是数组。

Signature:

typescript
declare function is_object(o: any): o is object;
declare function is_object(o: any): o is object;

Parameters

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

Returns:

o is object

一个布尔值,指示输入参数“o”是否为对象。

Released under the MIT License.