zenparsing / es6now

ECMAScript 6 to 5 Compiler and Runtime Environment
MIT License
29 stars 2 forks source link

Module Cache Interference #24

Closed zenparsing closed 10 years ago

zenparsing commented 10 years ago

From the REPL:

module.importSync("node:fs"); // OK
module.importSync("fs"); // Error: Package fs not found
module.importSync("node:fs"); // Error:  Package fs not found

The third line should not result in an error.