![]() |
hace 2 años | |
---|---|---|
.. | ||
vendor | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
package.json | hace 2 años | |
sentence-case.d.ts | hace 2 años | |
sentence-case.js | hace 2 años |
Transform a string to lower space cased. Optional locale and replacement character supported.
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 sentence-case --save
var sentenceCase = require('sentence-case')
sentenceCase(null) //=> ""
sentenceCase('string') //=> "string"
sentenceCase('dot.case') //=> "dot case"
sentenceCase('camelCase') //=> "camel case"
sentenceCase('Beyoncé Knowles') //=> "beyoncé knowles"
sentenceCase('A STRING', 'tr') //=> "a strıng"
sentenceCase('HELLO WORLD!', null, '_') //=> "hello_world"
Includes a TypeScript definition.
MIT