Last change
on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
437 bytes
|
Line | |
---|
1 | /*
|
---|
2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
3 | Author Tobias Koppers @sokra
|
---|
4 | */
|
---|
5 |
|
---|
6 | "use strict";
|
---|
7 |
|
---|
8 | const ModuleDependency = require("./ModuleDependency");
|
---|
9 |
|
---|
10 | class LoaderDependency extends ModuleDependency {
|
---|
11 | /**
|
---|
12 | * @param {string} request request string
|
---|
13 | */
|
---|
14 | constructor(request) {
|
---|
15 | super(request);
|
---|
16 | }
|
---|
17 |
|
---|
18 | get type() {
|
---|
19 | return "loader";
|
---|
20 | }
|
---|
21 |
|
---|
22 | get category() {
|
---|
23 | return "loader";
|
---|
24 | }
|
---|
25 | }
|
---|
26 |
|
---|
27 | module.exports = LoaderDependency;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.