frontend/.pnpm-store/v3/files/a2/933e7b29da49502d6e25d0720794a3f38dae8b556613331edf9bb7cee000f60a8807ff34ec0642f1ce089e886626e05affe2cfc5db34f77b84aafcd852bd4e

17 lines
406 B
Plaintext

"use strict";
var WeakMapPoly = require("../polyfill");
module.exports = function (t, a) {
a(t(undefined), false, "Undefined");
a(t(null), false, "Null");
a(t(true), false, "Primitive");
a(t("raz"), false, "String");
a(t({}), false, "Object");
a(t([]), false, "Array");
if (typeof WeakMap !== "undefined") {
a(t(new WeakMap()), true, "Native");
}
a(t(new WeakMapPoly()), true, "Polyfill");
};