Skip to content
On this page

Home > @taiyuuki/utils > object_keys

object_keys() function

该函数将对象的键作为数组返回。

Signature:

typescript
declare function object_keys<T extends object>(o: T): Keys<T>;
declare function object_keys<T extends object>(o: T): Keys<T>;

Parameters

ParameterTypeDescription
oTo 是扩展对象的类型 T 的泛型参数。它表示要返回其键的对象。

Returns:

Keys<T>

函数 object_keys 返回输入对象 o 的键数组。

Released under the MIT License.