mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
* 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>
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
export * from "util";
|
|
|
|
const TextEncoder = globalThis.TextEncoder;
|
|
const TextDecoder = globalThis.TextDecoder;
|
|
|
|
export { TextEncoder, TextDecoder };
|