frontend/.pnpm-store/v3/files/f2/c1761d9be3b978a0dfadb6a578ee9a251a83619a4a8dd513c73129dd308ea8f2bc9e9ea673cb440c241a10be3eb607d3f0a5fe45828eac343ffea9d96c847d

17 lines
407 B
Plaintext

"use strict";
var SymbolPolyfill = 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 Symbol !== "undefined") {
a(t(Symbol("foo")), true, "Native");
}
a(t(SymbolPolyfill()), true, "Polyfill");
};