text-constant-case

Convert into upper case text with an underscore between words

Usage no npm install needed!

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

README

Constant Case

NPM version NPM downloads Bundle size

Transform into upper case text with an underscore between words

Installation

npm install text-constant-case --save

Usage

import { constantCase } from "text-constant-case";

constantCase("string"); //=> "STRING"
constantCase("dot.case"); //=> "DOT_CASE"
constantCase("PascalCase"); //=> "PASCAL_CASE"
constantCase("camelCase"); //=> "CAMEL_CASE"
constantCase("version 1.2.3"); //=> "VERSION_1_2_3"

The function also accepts options.

License

MIT