mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 16:53:54 +01:00
ffc34387f0
This ports the PDF manual by @catloversg into .md form, so it can be used in-game and via browsing on GitHub. It also adds MathJax rendering to in-game docs, so that the math formulas can be rendered. (GitHub already supports this natively.)
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 },
|
|
});
|