polyfill.js 387 B

123456789
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var TextDecoder_1 = require("../common/TextDecoder");
  4. var TextEncoder_1 = require("../common/TextEncoder");
  5. if (!global['TextEncoder'])
  6. global['TextEncoder'] = TextEncoder_1.TextEncoder;
  7. if (!global['TextDecoder'])
  8. global['TextDecoder'] = TextDecoder_1.TextDecoder;
  9. //# sourceMappingURL=polyfill.js.map