npm.io
0.0.6 • Published 6 years ago

dot-snake-camel-case-convertor

Licence
MIT
Version
0.0.6
Deps
0
Size
7 kB
Vulns
0
Weekly
0

dot-snake-camel-case-convertor

【WIP】convert dot-case, snake_case, camelCase to one another. eg: hello-world => hello_world / HelloWorld (vice versa)

Install

npm install dot-snake-camel-case-convertor

Usage


// es module
import camel2dot from 'dot-snake-camel-case-convertor'
camel2dot('helloWorld') // hello-world
// commonjs
const camel2dot = require('dot-snake-camel-case-convertor')
camel2dot('helloWorld') // hello-world

Tip

this is still working in progress. only support strict camelCase to dot-case now. eg: helloWorld => hello-world