the object/array to check.
the list of keys each object must include. string array.
Calculates the maximum depth of an object by traversing every path. Can be expensive on large objects, so use sparingly.
the object to calculate depth of
a starting value, used for recursion. not recommended
Checks if an object has at least all the specific keys. Could have more.
the object to check the keys of.
the list of keys the object must include. string array.
if the object has all the keys in the array.
Get the depth of an object, or if its an array then the depth of the items.
the object or array to get depth of.
Returns the number of primitives in an object
If start === finish, it starts at zero up to finish.
Generated using TypeDoc
Array agnostic version of
objectKeysInclude
.Checks if the keys of an object are a superset of a list, or if the object is an array, it checks the first 5 items.