Skip to content

tildeio/json-normalizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-normalizer

A small, lightweight module for normalizing JSON property names and values. In keeping with the Unix philosophy, it does one thing and does it well.

example

var json = {
  ember_is_easy_no_it_isnt: true,
  rails_is_omakase: 123
};

var processor = new Processor(json);
processor.camelizeKeys();
console.log(processor.json);

This prints:

{
  emberIsEasyNoItIsnt: true,
  railsIsOmakase: 123
}

license

MIT

About

A small, lightweight library for normalizing JSON properties and values.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published