First commit

This commit is contained in:
2021-03-07 05:58:59 +01:00
committed by Andreas Schaafsma
commit 6e1a5f9fe5
18475 changed files with 3309357 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
"use strict";
module.exports = function (t, a) {
a(t({ foo: "bar" }), JSON.stringify({ foo: "bar" }));
a(t({ foo: { elo: 12 } }), "{\"foo\":{\"elo\":12}}");
a(
t({ foo: { elo: 12, mel: { toJSON: function () { throw new Error("Nu nu!"); } } } }),
"{\"foo\":{\"elo\":12}}"
);
a(
t({ foo: { elo: 12 }, mel: { toJSON: function () { throw new Error("Nu nu!"); } } }),
"{\"foo\":{\"elo\":12}}"
);
a(
t({
foo: { elo: 12 },
mel: ["raz", { toJSON: function () { throw new Error("Nu nu!"); } }, 0, 2]
}),
"{\"foo\":{\"elo\":12},\"mel\":[\"raz\",0,2]}"
);
};