Converting object keys to camelCase. Works on deeply nested objects/arrays. Handy for converting underscore keys to camelCase. Written in TypeScript and powered by Remeda — small, tree-shakeable, and fully typed.
$ npm i remeda-humpsremeda is a peer-friendly runtime dependency and is installed automatically.
Removes any hyphens, underscores, and whitespace characters, and uppercases the first character that follows. Returns a new object. See Remeda's toCamelCase() and https://en.wikipedia.org/wiki/CamelCase.
import humps from 'remeda-humps'
const object = { attr_one: 'foo', attr_two: 'bar', attr_three: { attr_one: 'foo' } }
humps(object) // { attrOne: 'foo', attrTwo: 'bar', attrThree: { attrOne: 'foo' } }Arrays of objects are also converted:
const array = [{ attr_one: 'foo' }, { attr_one: 'bar' }]
humps(array) // [{ attrOne: 'foo' }, { attrOne: 'bar' }]Want to convert keys the other way, or with your own rule? Import createHumps from the subpath and pass any (key: string) => string converter — for example Remeda's toSnakeCase:
import createHumps from 'remeda-humps/createHumps'
import { toSnakeCase } from 'remeda'
const snakes = createHumps(toSnakeCase)
const object = { attrOne: 'foo', attrTwo: 'bar', attrThree: { attrOne: 'foo' } }
snakes(object) // { attr_one: 'foo', attr_two: 'bar', attr_three: { attr_one: 'foo' } }humps has two call shapes. Called plainly, it infers the result type from the input — convenient when the keys already line up with your type. Called with an explicit type argument, it asserts the converted shape you expect, since the runtime keys change but the structure stays the same:
import humps from 'remeda-humps'
interface ApiUser { first_name: string }
interface User { firstName: string }
const apiUser: ApiUser = { first_name: 'Ada' }
const inferred = humps(apiUser) // typed as ApiUser (structure unchanged)
const user = humps<User>(apiUser) // typed as UserThe default export is CommonJS-friendly, so require returns the function directly:
const humps = require('remeda-humps')
const createHumps = require('remeda-humps/createHumps')- Only plain objects (created by the
Objectconstructor / object literals) have their keys converted. Class instances, dates, etc. are returned untouched — wrap them in a spread, e.g.humps({ ...someInstance }), if you need them processed. - Only object values are recursed into; primitive and function values are preserved as-is, including function properties.
remeda-humps is the TypeScript + Remeda successor to lodash-humps.
- Default
humpsimport is unchanged. createHumpsmoved fromlodash-humps/lib/createHumpsto theremeda-humps/createHumpssubpath export.- Key casing is now produced by Remeda's
toCamelCaseinstead of_.camelCase; output is equivalent for the common underscore/hyphen/space/UPPERCASE cases.
ISC © Kai Curry