Skip to content

Commit

Permalink
docs: update reviver example
Browse files Browse the repository at this point in the history
  • Loading branch information
javiercejudo committed May 7, 2016
1 parent b95cd08 commit 70a2953
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 @@ -80,10 +80,10 @@ Decimal40.setPrecision(40);

var decimalThird = new Decimal40('1').div(new Decimal('3'));

var stringified = JSON.stringify([decimalThird]);
// => '["0.3333333333333333333333333333333333333333"]'
var stringified = JSON.stringify(decimalThird);
// => '"0.3333333333333333333333333333333333333333"'

JSON.parse(stringified, Decimal40.JSONReviver)[0];
JSON.parse(stringified, Decimal40.JSONReviver);
// => new Decimal40('0.3333333333333333333333333333333333333333')
```

Expand Down

0 comments on commit 70a2953

Please sign in to comment.