Files
bun.sh/src/node-fallbacks/util.js
Hyro 1cb8f0fa73 feat(util): support for util.TextDecoder (#990)
* build:(landing) automated website build

* Revert "build:(landing) automated website build"

This reverts commit ddee8485fd.

* feat(util): support for util.TextDecoder

* tests(util): add TextDecoder

* tests: seperate text-decoder

Co-authored-by: xHyroM <xHyroM@users.noreply.github.com>
2022-08-05 10:42:52 -07:00

7 lines
149 B
JavaScript

export * from "util";
const TextEncoder = globalThis.TextEncoder;
const TextDecoder = globalThis.TextDecoder;
export { TextEncoder, TextDecoder };