1.0.2 • Published 4 years ago

text-header-case v1.0.2

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

Header Case

NPM version NPM downloads Bundle size

Transform into a dash separated text of capitalized words

Installation

npm install text-header-case --save

Usage

import { headerCase } from "text-header-case";

headerCase("string"); //=> "String"
headerCase("dot.case"); //=> "Dot-Case"
headerCase("PascalCase"); //=> "Pascal-Case"
headerCase("camelCase"); //=> "Camel-Case"
headerCase("version 1.2.3"); //=> "Version-1-2-3"

The function also accepts options.

License

MIT