is-implemented.js 317 B

1234567891011121314
  1. "use strict";
  2. var global = require("ext/global-this")
  3. , polyfill = require("../polyfill");
  4. module.exports = function (t, a) {
  5. var cache;
  6. a(typeof t(), "boolean");
  7. cache = global.Symbol;
  8. global.Symbol = polyfill;
  9. a(t(), true);
  10. if (cache === undefined) delete global.Symbol;
  11. else global.Symbol = cache;
  12. };