webpack/test/configCases/asset-url/target-webworker2/test.config.js

10 lines
145 B
JavaScript

let _URL = require("url").URL;
module.exports = {
moduleScope(scope) {
scope.URL = function URL(a, b) {
return new _URL(a, b);
};
}
};