text-no-case

Convert text to all lowercase letters with spaces between words

Usage no npm install needed!

<script type="module">
  import textNoCase from 'https://cdn.skypack.dev/text-no-case';
</script>

README

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