text-no-case
v1.0.2
Published
Convert text to all lowercase letters with spaces between words
Downloads
11,460
Maintainers
Readme
No Case
Convert text to all lowercase letters with spaces between words
Installation
npm install text-no-case --save
Usage
import { noCase } from "text-no-case";
noCase("string"); //=> "string"
noCase("dot.case"); //=> "dot case"
noCase("PascalCase"); //=> "pascal case"
noCase("camelCase"); //=> "camel case"
noCase("version 1.2.3"); //=> "version 1 2 3"
The function also accepts options
.
License
MIT