We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a46bc86 commit 439db6eCopy full SHA for 439db6e
index.js
@@ -554,7 +554,12 @@ export class JSON22 {
554
555
}
556
557
- static stringify(value) {
+ /**
558
+ * @param {any} value
559
+ * @param {{}} [options]
560
+ * @return {string}
561
+ * */
562
+ static stringify(value, options) {
563
const vStack = new JSON22.#Stack([value], true);
564
const result = [];
565
while (!vStack.empty) {
0 commit comments