convert dot-case, snake_case, camelCase to one another.
npm install dot-snake-camel-case-convertorshell
npm install dot-snake-camel-case-convertor
`Usage
`javascript// es module
import camel2dot from 'dot-snake-camel-case-convertor'
camel2dot('helloWorld') // hello-world
``javascript
// 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