Welcome to mirror list, hosted at ThFree Co, Russian Federation.

text_encoder.js « dom_shims « __helpers__ « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3d5221a003d1a03673a70068f637a00c9f3ba3c (plain)
1
2
3
4
import { TextEncoder, TextDecoder } from 'util';

global.TextEncoder = TextEncoder;
global.TextDecoder = TextDecoder;