frontend/.pnpm-store/v3/files/65/b09dec83b55fe7b9870e1885465a14ffa48ab9317c3803d6e23dcc1be65970fe643d06159bea6261cc815daf3b77fc728e6ac5bce336c940a86ca095bfe723

15 lines
317 B
Plaintext

"use strict";
var global = require("ext/global-this")
, polyfill = require("../polyfill");
module.exports = function (t, a) {
var cache;
a(typeof t(), "boolean");
cache = global.Symbol;
global.Symbol = polyfill;
a(t(), true);
if (cache === undefined) delete global.Symbol;
else global.Symbol = cache;
};