@zero-dependency/utilsFunctionsentriesentries Callableentries<T>(obj: T): Entries<T>Returns an array of a given object's own enumerable string-keyed property [key, value] pairs.@exampleentries({ a: 1, b: '2' }) // [['a', 1], ['b', '2']]Type parametersT: objectParametersobj: TThe object to get the entries of.Returns Entries<T>Returns the new array of key-value pairs.
Returns an array of a given object's own enumerable string-keyed property [key, value] pairs.