summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/npm/registry/@denotest/builtin-module-module/1.0.0/index.js
blob: cb610a613e0c6d54bdc301ea71b47609f6484197 (plain)
1
2
3
4
5
import m1 from "node:module";
import m2 from "module";

console.log(typeof m1.Module);
console.log(typeof m2.Module);