lasso-require
Version:
Lasso.js plugin to support Node.js style module require in the browser
21 lines (19 loc) • 437 B
JavaScript
;
class DeduperContext {
constructor() {
this.lookups = {
def: {},
run: {},
installed: {},
main: {},
remap: {},
require: {},
builtin: {},
searchPath: {}
};
this.runtimeInclude = false;
this.readyIncluded = false;
this.processIncluded = false;
}
}
module.exports = DeduperContext;