@stdlib/utils
Version:
Standard utilities.
29 lines (20 loc) • 499 B
Plain Text
{{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
--------