1.0.0 • Published 6 years ago

zhf.str-to-hump v1.0.0

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

字符串转驼峰

const strToHump = require('zhf.str-to-hump');

console.log(strToHump('hello-world')); // helloWorld
console.log(strToHump('hello&world', '&')); // helloWorld
console.log(strToHump('-hello-world')); // HelloWorld