27 lines
375 B
Markdown
Raw Normal View History

2024-08-24 20:48:14 +02:00
# to-sentence-case
Convert a string to a sentence case.
## Installation
$ component install ianstormtaylor/to-sentence-case
## Example
```js
var sentence = require('to-sentence-case');
sentence('the catcher in the rye');
// "The catcher in the rye"
```
## API
### toSentenceCase(string)
Returns the sentence-case variant of a `string`.
## License
MIT