snakeize
recursively transform key strings from camel-case to underscore-style
Last updated 11 years ago by nathan7 .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install snakeize 
SYNC missed versions from official npm registry.

snakeize

recursively transform key strings from camel-case to underscore-style. Derives directly from substack's camelize

build status

browser support

example

var snakeize = require('snakeize');
var obj = {
    feeFieFoe: 'fum',
    beepBoop: [
        { 'abcXyz': 'mno' },
        { 'FooBar': 'baz' },
        { 'CheeseID': 'wensleydale' }
    ]
};
var res = snakeize(obj);
console.log(JSON.stringify(res, null, 2));

output:

{
  "fee_fie_foe": "fum",
  "beep_boop": [
    {
      "abc_xyz": "mno"
    },
    {
      "foo_bar": "baz"
    },
    {
      "cheese_id": "wensleydale"
    }
  ]
}

methods

var snakeize = require('snakeize')

snakeize(obj)

Convert the key strings in obj from camel-case to underscore-stlye recursively.

install

With npm do:

npm install snakeize

To use in the browser, use browserify or component:

component install nathan7/snakeize

license

MIT

Current Tags

  • 0.1.0                                ...           latest (11 years ago)

3 Versions

  • 0.1.0                                ...           11 years ago
  • 0.0.1                                ...           13 years ago
  • 0.0.0                                ...           13 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 1
Last Day 0
Last Week 1
Last Month 0
Dependencies (0)
None
Dev Dependencies (2)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |