browserify-lite
browserify-lite copied to clipboard
Spurious "Cannot find module" exception
Generated code has:
if (!id) throw new Error("Cannot find module " + alias);
but this fails if id
happens to be 0
(which is valid). I guess the code should instead check for id === undefined
instead?