1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/cli/tests/testdata/npm/require_resolve_url/url_paths.ts

12 lines
333 B
TypeScript

import { createRequire } from "node:module";
const require = createRequire(import.meta.url);
console.log(getParentUrl());
console.log(require.resolve("@denotest/esm-basic", {
paths: [getParentUrl()],
}));
function getParentUrl() {
const fileUrl = import.meta.url;
return fileUrl.substring(0, fileUrl.lastIndexOf("/") + 1);
}