normalize-object

normalize objects using various types of casing

Usage no npm install needed!

<script type="module">
  import normalizeObject from 'https://cdn.skypack.dev/normalize-object';
</script>

README

normalize-object

Dependency status devDependency Status Build Status

NPM

Based off of normalize-case

Version History

  • 2.0: Support for Object-like objects (Map, Set, Buffer, Date, etc)
  • 1.3: Remove gulp, coffee, underscore
  • 1.2: remove node 4.x support
  • 1.1: camelize-object -> normalize-object

Installation

npm install normalize-object

Usage

Normalize an object and all of its keys (included nested object keys and objects in arrays) to the format of your choosing.

normalize(obj, caseType)

Where caseType defaults to camel case

Supports the following casing types:

  • camel
  • capital
  • constant
  • lower
  • pascal
  • sentence
  • snake
  • title
  • upper

Usage Example

var normalize = require('normalize-object');

var input = {
  api_key: "baz",
  "first name": "baz",
  last_name: "foo",
  array: [
    { Name: "baz" },
    { "names  ": [A: 1] }
  ]
};

var output = normalize(input, 'camel'); // camel is used by default

Where output would be:

var output = {
  apiKey: "baz",
  firstName: "baz",
  lastName: "foo",
  array: [
    { name: "baz" },
    { names: [a: 1] }
  ]
};

Testing

npm test