1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/tests/node_compat/runner.ts

15 lines
398 B
TypeScript
Raw Normal View History

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import "./polyfill_globals.js";
2023-02-17 09:58:52 -05:00
import { createRequire } from "node:module";
import { toFileUrl } from "@std/path/mod.ts";
2023-02-17 09:58:52 -05:00
const file = Deno.args[0];
if (!file) {
throw new Error("No file provided");
}
if (file.endsWith(".mjs")) {
await import(toFileUrl(file).href);
} else {
createRequire(import.meta.url)(file);
}