source: frontend/node_modules/webpack/lib/dependencies/PrefetchDependency.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 491 bytes
RevLine 
[9af201e]1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3 Author Tobias Koppers @sokra
4*/
5
6"use strict";
7
8const ModuleDependency = require("./ModuleDependency");
9
10class PrefetchDependency extends ModuleDependency {
11 /**
12 * Creates an instance of PrefetchDependency.
13 * @param {string} request the request string
14 */
15 constructor(request) {
16 super(request);
17 }
18
19 get type() {
20 return "prefetch";
21 }
22
23 get category() {
24 return "esm";
25 }
26}
27
28module.exports = PrefetchDependency;
Note: See TracBrowser for help on using the repository browser.