Package Exports
- object-casing
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (object-casing) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
object-casing
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(),
}
*/