1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-02 09:34:19 -04:00
denoland-deno/cli/tests/node_compat/runner.ts
2023-02-17 23:58:52 +09:00

7 lines
239 B
TypeScript

// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
import { createRequire } from "node:module";
const file = Deno.args[0];
if (!file) {
throw new Error("No file provided");
}
createRequire(import.meta.url)(file);