1.0.2 • Published 4 years ago

text-no-case v1.0.2

Weekly downloads
318
License
MIT
Repository
github
Last release
4 years ago

No Case

NPM version NPM downloads Bundle size

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