Convert camelcase string to words
or
``
``
``
Install
`` npm install --save split-camelcase-to-words
``Import
`` var toWords = require('split-camelcase-to-words');
``
or
``
import toWords from 'split-camelcase-to-words';
``Use
`` toWords('HelloWorld HowAreYou')
`` => Hello World How Are You
``
toWords('helloWorld howAreYou')
`` => Hello World How Are You
``
toWords('helloWorld')
`` => Hello World