Skip to content

Commit

Permalink
Use a higher depth and edge limit to avoid breaking people (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Sep 8, 2021
1 parent 49a6ea2 commit 46f509c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.js
Expand Up @@ -11,8 +11,8 @@ var replacerStack = []

function defaultOptions () {
return {
depthLimit: 10,
edgesLimit: 20
depthLimit: Number.MAX_SAFE_INTEGER,
edgesLimit: Number.MAX_SAFE_INTEGER
}
}

Expand Down
7 changes: 4 additions & 3 deletions readme.md
Expand Up @@ -35,9 +35,10 @@ function replacer(key, value) {
}

// those are also defaults limits when no options object is passed into safeStringify
// configure it to lower the limit.
const options = {
depthLimit: 10,
edgesLimit: 20,
depthLimit: Number.MAX_SAFE_INTEGER,
edgesLimit: Number.MAX_SAFE_INTEGER
};

const serialized = safeStringify(o, replacer, 2, options)
Expand Down Expand Up @@ -166,4 +167,4 @@ MIT
[`space`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#The%20space%20argument
[`toJSON`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON()_behavior
[benchmark]: https://github.com/epoberezkin/fast-json-stable-stringify/blob/67f688f7441010cfef91a6147280cc501701e83b/benchmark
[JSON.stringify]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
[JSON.stringify]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify

0 comments on commit 46f509c

Please sign in to comment.