Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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"

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.