You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
577 B

4 years ago
"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]}"
);
};