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