Create an object without a prototype.
The original object.
Returns an array of key/values of the enumerable properties of an object.
The original object.
Remove keys from an object based on a function predicate without mutating the original.
The original object.
A predicate function to determine which keys to retain. The filter method calls the predicate function one time for each element in the array.
Turn an object into a single depth object.
The original object.
Returns an object created by key-value entries for properties and methods
An iterable object that contains key-value entries for properties and methods.
Returns the names of the enumerable string properties and methods of an object.
The original object.
Transform an object without mutating the original.
The original object.
The map method calls the callback function one time for each element in the array.
Remove keys from an object. This function creates a new object without the specified keys. The original object is not mutated.
The original object.
An array of keys to remove.
Pick keys from an object. This function creates a new object with the specified keys. The original object is not mutated.
The original object.
An array of keys to keep.
Revert a flattened object to a nested object.
The flattened object.
Generated using TypeDoc
Array<[key, value]>