split-camelcase-to-words

Utility to split words from camel case strings or continuous strings

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
split-camelcase-to-words
001.0.15 years ago5 years agoMinified + gzip package size for split-camelcase-to-words in KB

Readme

Split-CamelCase-To-Words Build Status
Convert camelcase string to words

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