summaryrefslogtreecommitdiff
path: root/tests/testdata/compile/napi/main.ts
blob: 91e8a05613e9aad05f7e4f4cd9e9f84ab1195709 (plain)
1
2
3
4
5
6
7
import Module from "node:module";

const mod = new Module("");

const filepath = Deno.args[0];

console.log(mod.require(filepath));