Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

View File

@ -0,0 +1,19 @@
"use strict";
module.exports = function (t, a) {
a(t(), "undefined");
a(t(null), "null");
a(t(10), "10");
a(t("str"), "str");
a(
t({
toString: function () {
return "miszka";
}
}),
"miszka"
);
// eslint-disable-next-line symbol-description
if (typeof Symbol === "function") a(t(Symbol()), "Symbol()");
a(t(Object.create(null)), "<non-stringifiable value>");
};