1.0.0 • Published 7 years ago

hump-string v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

#hump ####converter for strings in JavaScript

#Usage

Converting strings

    hump('hello_world') // 'helloWorld'
    hump('hello-world') // 'helloWorld'
    hump('hello world') // 'helloWorld'
    hump('helloWorld1') // 'hello_world1'
    hump('helloWorld1', {
            pattern: /(?=[A-Z0-9])/
    })                  //hello_world_1 
    hump('helloWorld', {
        retrofit: '-'
    }                   //hello-world
1.0.0

7 years ago