mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 22:04:06 -06:00
7 lines
280 B
JavaScript
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
|