debian-mirror-gitlab/spec/frontend/__helpers__/dom_shims/text_encoder.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
118 B
JavaScript
Raw Normal View History

2022-11-25 23:54:43 +05:30
import { TextEncoder, TextDecoder } from 'util';
global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;