0.1.3 • Published 6 years ago

string-tocamelcase v0.1.3

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

string-tocamelcase

NOTE: string-tocamelcase was renamed to @extra-string/to-camel-case. NPM

Convert string to camel case.

const toCamelCase = require('string-tocamelcase');
// toCamelCase(<string>, [capitalize=0], [separator=/\W+/g])

toCamelCase('Western Ghats');
// 'westernGhats'
toCamelCase('cardamom--hills', 1);
// 'CardamomHills'
toCamelCase('EAstErn__ghAts', 1, '_');
// 'EasternGhats'
0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago