The object whose keys to iterate over.
An iterable of the object's keys.
This function is a part of the utils
module.
V - The type of the values in the object.
const obj = { a: 1, b: 2, c: 3 };
const keys = objKeys(obj);
for (const key of keys) {
//=> //=> //=> c
}
Generated using TypeDoc
Returns an iterable of all the keys in the given object.