mirror of
https://github.com/python/cpython.git
synced 2025-09-14 04:37:29 +00:00

This unifies the code for nodejs and the code for the browser. After this commit, the browser example doesn't work; this will be fixed in a subsequent update.
15 lines
508 B
JavaScript
15 lines
508 B
JavaScript
// If process is undefined, we're not running in the node runtime let it go I
|
|
// guess?
|
|
if (typeof process !== "undefined") {
|
|
const nodeVersion = Number(process.versions.node.split(".", 1)[0]);
|
|
if (nodeVersion < 18) {
|
|
process.stderr.write(
|
|
`Node version must be >= 18, got version ${process.version}\n`,
|
|
);
|
|
process.exit(1);
|
|
}
|
|
Module.preRun = () => {
|
|
FS.mkdirTree("/lib/");
|
|
FS.mount(NODEFS, { root: __dirname + "/lib/" }, "/lib/");
|
|
};
|
|
}
|