Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ianstormtaylor committed Sep 19, 2013
1 parent 0ac8c8a commit fda67f2
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ Case conversion:
```js
var Case = require('case');

Case.camel('what_the_heck'); // "whatTheHeck"
Case.capital('what the heck'); // "What The Heck"
Case.constant('whatTheHeck'); // "WHAT_THE_HECK"
Case.dot('whatTheHeck'); // "what.the.heck"
Case.inverse('whaT tHe HeCK'); // "WHAt ThE HeCK"
Case.lower('whatTheHeck'); // "what the heck"
Case.sentence('whatTheHeck'); // "what.the.heck"
Case.slug('whatTheHeck'); // "what-the-heck"
Case.snake('whatTheHeck'); // "what_the_heck"
Case.space('what.the.heck'); // "what the heck"
Case.title('what the heck'); // "What the Heck"
Case.upper('whatTheHeck'); // "WHAT THE HECK"
Case.camel('what_the_heck'); // "whatTheHeck"
Case.capital('what the heck'); // "What The Heck"
Case.constant('whatTheHeck'); // "WHAT_THE_HECK"
Case.dot('whatTheHeck'); // "what.the.heck"
Case.inverse('whaT tHe HeCK'); // "WHAt ThE HeCK"
Case.lower('whatTheHeck'); // "what the heck"
Case.sentence('WHAT THE HECK.'); // "What the heck."
Case.slug('whatTheHeck'); // "what-the-heck"
Case.snake('whatTheHeck'); // "what_the_heck"
Case.space('what.the.heck'); // "what the heck"
Case.title('what the heck'); // "What the Heck"
Case.upper('whatTheHeck'); // "WHAT THE HECK"
```

## License
Expand Down

0 comments on commit fda67f2

Please sign in to comment.