Skip to content

Commit

Permalink
trying to make easier to understand
Browse files Browse the repository at this point in the history
  • Loading branch information
yurivictor committed Nov 25, 2015
1 parent 561d46e commit fb62e92
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ og.get( 'http://www.vox.com/2015/8/27/9214687/donald-trump-numbers-soar', functi
Standard request options from [node request lib](https://github.com/request/request). All are optional.

```js
og.get( 'http://nyti.ms/1MAcXZj', { jar: true }, function ( response ) {
var options = {
jar: true
}
og.get( 'http://nyti.ms/1MAcXZj', options, function ( response ) {
console.log( response );
} );
```
Expand Down

0 comments on commit fb62e92

Please sign in to comment.