![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | node_modules/ | 2 years ago | - | |
![]() | LICENSE | 9 years ago | 1.1K | |
![]() | README.md | 9 years ago | 1.3K | d7c1522 post receive test [كارل مبارك] |
![]() | package.json | 2 years ago | 1.8K | |
![]() | title-case.d.ts | 9 years ago | 90 | |
![]() | title-case.js | 9 years ago | 328 |
Title 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 title-case --save
var titleCase = require('title-case');
titleCase('string') //=> "String"
titleCase('PascalCase') //=> "Pascal Case"
titleCase('STRING', 'tr') //=> "Strıng"
Includes a TypeScript definition.
MIT