1.0.1 • Published 8 years ago

camelize.js v1.0.1

Weekly downloads
2
License
ISC
Repository
-
Last release
8 years ago

camelize.js

Camelize things.

Example

const camelize = require("camelize.js");

camelize({
    Name: "Brett",
    Children: [{
        Name: "Something",
        Age: 1
    }]
})
/*
{
    name: "Brett"
    children: [{
        name: "Something",
        age: 1
    }]
}
*/

camelize("HelloWorld") // helloWorld
camelize("SSN") // ssn

// handle weird calls
camelize(1) // 1
camelize(null) // null
camelize(undefined) // undefined
1.0.1

8 years ago

1.0.0

8 years ago