webpack/lib/dependencies/PrefetchDependency.js

19 lines
347 B
JavaScript
Raw Normal View History

2013-05-13 19:34:00 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const ModuleDependency = require("./ModuleDependency");
2013-05-13 19:34:00 +08:00
class PrefetchDependency extends ModuleDependency {
constructor(request) {
super(request);
}
get type() {
return "prefetch";
}
2013-05-13 19:34:00 +08:00
}
module.exports = PrefetchDependency;