Sha256: 81b35b777d6afae1a3d0cac66145223d63d3dcc381d0123efd66e6d528b1ec31
Contents?: true
Size: 406 Bytes
Versions: 28
Compression:
Stored size: 406 Bytes
Contents
"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"); };
Version data entries
28 entries across 28 versions & 1 rubygems