Interacting with data from third-party sources like APIs comes with challenges. You’re not in control of the data format and style. Sometimes, you wish to transform the data to your preferred style.
This tutorial shows you how to transform the keys of an object into camelCase format.
Node.js Series Overview
- String Replace All Appearances
- Remove All Whitespace From a String in JavaScript
- Generate a Random String in Node.js or JavaScript
- Remove Extra Spaces From a String in JavaScript or Node.js
- Remove Numbers From a String in JavaScript or Node.js
- Get the Part Before a Character in a String in JavaScript or Node.js
- Get the Part After a Character in a String in JavaScript or Node.js
- How to Check if a Value is a String in JavaScript or Node.js
- Check If a String Includes All Strings in JavaScript/Node.js/TypeScript
- Check if a Value is a String in JavaScript and Node.js (Coming soon)
- Limit and Truncate a String to a Given Length in JavaScript and Node.js (Coming soon)
- How to Run an Asynchronous Function in Array.map()
- How to Reset and Empty an Array
- for…of vs. for…in Loops
- Clone/Copy an Array in JavaScript and Node.js
- Get an Array With Unique Values (Delete Duplicates)
- Sort an Array of Integers in JavaScript and Node.js
- Sort a Boolean Array in JavaScript, TypeScript, or Node.js
- Check If an Array Contains a Given Value in JavaScript or Node.js
- Add an Item to the Beginning of an Array in JavaScript or Node.js
- Append an Item at the End of an Array in JavaScript or Node.js
- How to Exit and Stop a for Loop in JavaScript and Node.js (Coming soon)
- Split an Array Into Smaller Array Chunks in JavaScript and Node.js
- How to Get an Index in a for…of Loop in JavaScript and Node.js (Coming soon)
- Callback and Promise Support in your Node.js Modules
- Run Async Functions/Promises in Sequence
- Run Async Functions/Promises in Parallel
- Run Async Functions in Batches
- How to Fix “Promise resolver undefined is not a function” in Node.js or JavaScript
- Detect if Value Is a Promise in Node.js and JavaScript
- How to Merge Objects
- How to Check if an Object is Empty in JavaScript or Node.js
- How to CamelCase Keys of an Object in JavaScript or Node.js
- Get a File’s Created Date
- Get a File’s Last Modified/Updated Date
- How to Create an Empty File
- Check If a Path or File Exists (Coming soon)
- How to Rename a File (Coming soon)
- Check If a Path Is a Directory (Coming soon)
- Check If a Path Is a File (Coming soon)
- Retrieve the Path to the User’s Home Directory (Coming soon)
- How to Touch a File (Coming soon)
CamelCase All Keys of an Object in JavaScript
We at Future Studio use camelCase as our preferred styling for object keys. External resources may not use camelCase and instead prefer snake_case.
You may want to normalize an object’s keys when interacting with APIs using snake_case. The following code snippet shows a camelCaseKeys
function transforming all top-level object keys from their current format to camelCase:
const Str = require('@supercharge/strings')
/**
* Translate all top-level keys of the given `object` to camelCase.
*
* @param {Object} object
*
* @returns {Object}
*/
function camelCaseKeys (object) {
return Object
.entries(object)
.reduce((carry, [key, value]) => {
carry[Str(key).camel().get()] = value
return carry
}, {})
}
Modern browsers and Node.js support the Object.entries()
method returning an array of the object’s key-value pairs. Then you can iterate over these pairs using Array#reduce()
to create a new object following the desired coding style.
Here’s an example camel-casing all top-level keys of an object:
const fileImport = {
File_Location: '/user/marcus/downloads/data_import.xlsx',
Created_At: 1610685464300,
Nested: {
// the `camelCaseKeys` function does not touch nested objects
}
}
const camelCasedFileImport = camelCaseKeys(fileImport)
// {
// fileLocation: '/user/marcus/downloads/data_import.xlsx',
// createdAt: 1610685464300,
// nested: { … }
// }
About the @supercharge/strings Package
I’m the maintainer of the @supercharge/strings package providing convenient string utilities. This package comes in handy when transforming a given string value to camelCase because it removes all special characters like whitespaces, dashes, exclamation marks, and so on:
const Str = require('@supercharge/strings')
const camelCased = Str('Hello Marcus').camel().get()
// 'helloMarcus'
Enjoy!
Mentioned Resources
- @supercharge/strings repository on GitHub