Skip to content

Commit

Permalink
tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 5, 2015
1 parent b322149 commit 8ae5dc9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,24 +6,24 @@

## Install

```sh
```
$ npm install --save humanize-string
```


## Usage

```js
var humanizeString = require('humanize-string');
const humanizeString = require('humanize-string');

humanizeString('fooBar');
//=> Foo bar
//=> 'Foo bar'

humanizeString('foo-bar');
//=> Foo bar
//=> 'Foo bar'

humanizeString('foo_bar');
//=> Foo bar
//=> 'Foo bar'
```


Expand Down

0 comments on commit 8ae5dc9

Please sign in to comment.