Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
kevva committed Jan 4, 2016
1 parent 915ec66 commit de7094d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ $ npm install --save strict-uri-encode
## Usage

```js
var strictUriEncode = require('strict-uri-encode');
const strictUriEncode = require('strict-uri-encode');

strictUriEncode('unicorn!foobar')
strictUriEncode('unicorn!foobar');
//=> 'unicorn%21foobar'

strictUriEncode('unicorn*foobar')
strictUriEncode('unicorn*foobar');
//=> 'unicorn%2Afoobar'
```

Expand Down

0 comments on commit de7094d

Please sign in to comment.