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

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 444 bytes
RevLine 
[79a0317]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 * @param {string} request the request string
13 */
14 constructor(request) {
15 super(request);
16 }
17
18 get type() {
19 return "prefetch";
20 }
21
22 get category() {
23 return "esm";
24 }
25}
26
27module.exports = PrefetchDependency;
Note: See TracBrowser for help on using the repository browser.