|
|
il y a 2 ans | |
|---|---|---|
| .. | ||
| LICENSE | il y a 2 ans | |
| README.md | il y a 2 ans | |
| header-case.d.ts | il y a 2 ans | |
| header-case.js | il y a 2 ans | |
| package.json | il y a 2 ans | |
Header case a string.
Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.
npm install header-case --save
var headerCase = require('header-case')
headerCase('string') //=> "String"
headerCase('PascalCase') //=> "Pascal-Case"
headerCase('MY_STRING', 'tr') //=> "My-Strıng"
Includes a TypeScript definition.
MIT