mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 17:34:47 -05:00

Fixes bug introduced in ed3a7ce2f7
that
caused errors when loading built-in Node modules, when using "deno_graph".
4 lines
139 B
TypeScript
4 lines
139 B
TypeScript
import { createRequire } from "node:module";
|
|
console.log(createRequire);
|
|
import process from "node:process";
|
|
console.log(process.version);
|