| Current Path : /var/www/html/wetty/node_modules/webpack/lib/dependencies/ |
| Current File : /var/www/html/wetty/node_modules/webpack/lib/dependencies/DelegatedSourceDependency.js |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const ModuleDependency = require("./ModuleDependency");
class DelegatedSourceDependency extends ModuleDependency {
constructor(request) {
super(request);
}
get type() {
return "delegated source";
}
}
module.exports = DelegatedSourceDependency;