0.0.2 • Published 7 months ago

await-import-dont-compile v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
7 months ago

AWAIT-IMPORT-DONT-COMPILE!

// original
await import("/my-module.js");

// After compilation
Promise.resolve().then(() => __importStar(require("/my-module.js")));

// Use AWAIT-IMPORT-DONT-COMPILE to prevent compilation
// and better organization of code
import awaitImport from "await-import-dont-compile";
import { pathToFileURL } from "url";

await awaitImport(pathToFileURL("/my-module.js").href);
0.0.2

7 months ago

0.0.1

10 months ago