aboutsummaryrefslogtreecommitdiff
path: root/src/node-fallbacks/util.js
blob: 3bd55da0a449c04743b16d0737a6a9a89c0e7312 (plain) (blame)
1
2
3
4
5
6
export * from "util";

const TextEncoder = globalThis.TextEncoder;
const TextDecoder = globalThis.TextDecoder;

export { TextEncoder, TextDecoder };