polyfill.js 280 B

1234567
  1. import { TextDecoder } from "../common/TextDecoder";
  2. import { TextEncoder } from "../common/TextEncoder";
  3. if (!global['TextEncoder'])
  4. global['TextEncoder'] = TextEncoder;
  5. if (!global['TextDecoder'])
  6. global['TextDecoder'] = TextDecoder;
  7. //# sourceMappingURL=polyfill.js.map