Files
memecoin-botV2/.pnpm-store/v10/files/6a/6e353d78c4e4a5d949cec5f3eb681a4982dbb9397db472b1c89287dfa515bc2976bcc6d4c92a61139ce6c0415338f7adfc78f0667fa8f3d0f459841b048d99

15 lines
734 B
Plaintext

## 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