@tempots/std

objectKeys() function

Returns an array of keys from the given object.

Signature:

objectKeys: <T extends object>(obj: T) => Array<keyof T>

Parameters

Parameter

Type

Description

obj

T

The object from which to extract keys.

Returns: Array<keyof T>

An array of keys from the object.