mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
|
const { TextEncoder, TextDecoder } = require("node:util");
|
||
|
|
||
|
Object.defineProperties(globalThis, {
|
||
|
TextEncoder: { value: TextEncoder },
|
||
|
TextDecoder: { value: TextDecoder },
|
||
|
});
|