/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/dependencies/LoaderDependency.js
40 строк
877 B
Aviv Keller
refactor: add basic descriptions (#20787)
10 апр 2026, 18:52
Не верифицирован
10 апр 2026, 18:52
16857f0
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const ModuleDependency = require("./ModuleDependency"); /** @typedef {import("../Dependency").GetConditionFn} GetConditionFn */ /** @typedef {import("../ModuleGraph")} ModuleGraph */ class LoaderDependency extends ModuleDependency { /** * Creates an instance of LoaderDependency. * @param {string} request request string */ constructor(request) { super(request); } get type() { return "loader"; } get category() { return "loader"; } /** * Returns function to determine if the connection is active. * @param {ModuleGraph} moduleGraph module graph * @returns {null | false | GetConditionFn} function to determine if the connection is active */ getCondition(moduleGraph) { return false; } } module.exports = LoaderDependency;