mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
fc2e00152b
Co-authored-by: David Sherret <dsherret@gmail.com>
9 lines
386 B
TypeScript
9 lines
386 B
TypeScript
import fs from "node:fs";
|
|
const _data = fs.readFileSync("./node_builtin.js", 123);
|
|
|
|
// check node:module specifically because for deno check it should
|
|
// resolve to the @types/node package, but at runtime it uses a different
|
|
// builtin object than deno_std
|
|
import { builtinModules } from "node:module";
|
|
// should error about being string[]
|
|
const _testString: number[] = builtinModules;
|