time-to-botec/js/node_modules/@stdlib/utils/lowercase-keys/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

29 lines
499 B
Plaintext

{{alias}}( obj )
Converts each object key to lowercase.
The function only transforms own properties. Hence, the function does not
transform inherited properties.
The function shallow copies key values.
Parameters
----------
obj: Object
Source object.
Returns
-------
out: Object
New object.
Examples
--------
> var obj = { 'A': 1, 'B': 2 };
> var out = {{alias}}( obj )
{ 'a': 1, 'b': 2 }
See Also
--------