quartz/wallet/node_modules/@zxing/text-encoding/es2015/encoding/polyfill.js
2022-03-04 20:05:23 +08:00

7 lines
280 B
JavaScript

import { TextDecoder } from "../common/TextDecoder";
import { TextEncoder } from "../common/TextEncoder";
if (!global['TextEncoder'])
global['TextEncoder'] = TextEncoder;
if (!global['TextDecoder'])
global['TextDecoder'] = TextDecoder;
//# sourceMappingURL=polyfill.js.map