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

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

export { TextEncoder, TextDecoder };
export default { TextEncoder, TextDecoder };