lasso
Version:
Lasso.js is a build tool and runtime library for building and bundling all of the resources needed by a web application
20 lines (18 loc) • 423 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;