Name Last Update
..
example Loading commit data...
test Loading commit data...
.jshintrc Loading commit data...
.travis.yml Loading commit data...
LICENSE Loading commit data...
index.js Loading commit data...
package.json Loading commit data...
readme.markdown Loading commit data...

dasherize

recursively transform key strings to dash-case

build status

browser support

example

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

output:

{
  "fee-fie-foe": "fum",
  "beep-boop": [
    {
      "abc-xyz": "mno"
    },
    {
      "foo-bar": "baz"
    }
  ]
}

methods

var dasherize = require('dasherize')

dasherize(obj)

Convert the key strings in obj to dash-case recursively.

dasherize(str)

Convert the string to dash-case.

install

With npm do:

npm install dasherize

To use in the browser, use browserify.

license

derives directly from camelize

MIT