WIP - add extractor, generate snippet_data
This commit is contained in:
18
node_modules/webpack/lib/dependencies/PrefetchDependency.js
generated
vendored
Normal file
18
node_modules/webpack/lib/dependencies/PrefetchDependency.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
/*
|
||||
MIT License http://www.opensource.org/licenses/mit-license.php
|
||||
Author Tobias Koppers @sokra
|
||||
*/
|
||||
"use strict";
|
||||
const ModuleDependency = require("./ModuleDependency");
|
||||
|
||||
class PrefetchDependency extends ModuleDependency {
|
||||
constructor(request) {
|
||||
super(request);
|
||||
}
|
||||
|
||||
get type() {
|
||||
return "prefetch";
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = PrefetchDependency;
|
||||
Reference in New Issue
Block a user