Skip to content

brunolm/object-casing

Repository files navigation

object-casing

npm version Coverage Status

object-casing is a package that walks throught an object using a callback function to convert the object key, returning a new object with new keys.

Install

npm i -S object-casing

Example

import * as camelCase from 'lodash.camelcase'
import * as snakeCase from 'lodash.snakecase'

import { caseKeys } from 'object-casing'

const dbData = {
  id: 1,
  first_name: 'some name',
  last_name: 'last',
  created_at: new Date(),
}

const obj = caseKeys(dbData, camelCase)
/*
obj = {
  id: 1,
  firstName: 'some name',
  lastName: 'last',
  createdAt: new Date(),
}
*/

const objToDb = caseKeys(obj, snakeCase)
/*
objToDb = {
  id: 1,
  first_name: 'some name',
  last_name: 'last',
  created_at: new Date(),
}
*/

About

Converts keys of an object using the specified callback.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published