mirror of
https://github.com/denoland/deno.git
synced 2025-01-18 20:04:03 -05:00
8 lines
132 B
TypeScript
8 lines
132 B
TypeScript
|
import Module from "node:module";
|
||
|
|
||
|
const mod = new Module("");
|
||
|
|
||
|
const filepath = Deno.args[0];
|
||
|
|
||
|
console.log(mod.require(filepath));
|