Permalink
Cannot retrieve contributors at this time
14 lines (13 sloc)
734 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/json-stringify-safe/CHANGELOG.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Unreleased | |
- Fixes stringify to only take ancestors into account when checking | |
circularity. | |
It previously assumed every visited object was circular which led to [false | |
positives][issue9]. | |
Uses the tiny serializer I wrote for [Must.js][must] a year and a half ago. | |
- Fixes calling the `replacer` function in the proper context (`thisArg`). | |
- Fixes calling the `cycleReplacer` function in the proper context (`thisArg`). | |
- Speeds serializing by a factor of | |
Big-O(h-my-god-it-linearly-searched-every-object) it had ever seen. Searching | |
only the ancestors for a circular references speeds up things considerably. | |
[must]: https://github.com/moll/js-must | |
[issue9]: https://github.com/isaacs/json-stringify-safe/issues/9 |