@stdlib/utils-capitalize-keys
v0.2.2
Published
Convert the first letter of each object key to uppercase.
Downloads
16
Readme
capitalizeKeys
Convert the first letter of each object key to uppercase.
Installation
npm install @stdlib/utils-capitalize-keys
Usage
var capitalizeKeys = require( '@stdlib/utils-capitalize-keys' );
capitalizeKeys( obj )
Converts the first letter of each object
key to uppercase, mapping the transformed keys to a new object
having the same values.
var obj1 = {
'beepBoop': 1,
'fooBar': 2
};
var obj2 = capitalizeKeys( obj1 );
// returns { 'BeepBoop': 1, 'FooBar': 2 }
Notes
- The function only transforms own properties. Hence, the function does not transform inherited properties.
- The function shallow copies key values.
Examples
var capitalizeKeys = require( '@stdlib/utils-capitalize-keys' );
var obj1 = {
'aa': 'beep',
'bb': 'boop',
'cc': 'foo',
'dd': 'bar'
};
var obj2 = capitalizeKeys( obj1 );
console.dir( obj2 );
// => { 'Aa': 'beep', 'Bb': 'boop', 'Cc': 'foo', 'Dd': 'bar' }
See Also
@stdlib/utils-uncapitalize-keys
: convert the first letter of each object key to lowercase.@stdlib/utils-uppercase-keys
: convert each object key to uppercase.
Notice
This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
Community
License
See LICENSE.
Copyright
Copyright © 2016-2024. The Stdlib Authors.