Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/panthershark/proper-upper-case
Takes a string and formats it to Proper Noun style case. Ex: "bill MURRAY" would change to "Bill Murray"
https://github.com/panthershark/proper-upper-case
Last synced: about 2 months ago
JSON representation
Takes a string and formats it to Proper Noun style case. Ex: "bill MURRAY" would change to "Bill Murray"
- Host: GitHub
- URL: https://github.com/panthershark/proper-upper-case
- Owner: panthershark
- License: mit
- Created: 2014-05-29T20:01:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-11T19:19:42.000Z (almost 9 years ago)
- Last Synced: 2024-11-04T08:20:32.246Z (2 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
proper-upper-case
=================Takes a string and formats it to Proper Noun style case. Ex: "bill MURRAY" would change to "Bill Murray"
#Usage
```javascript
var toProperUpper = require('proper-upper-case');console.log(toProperUpper('bill murray'));
// ==> "Bill Murray"
```
# Improvements
Test and add logic to handle punctuation.