/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.105.4
lib/dependencies/LoaderDependency.js
38 строк
769 B
Alexander Akait
refactor: remove unused types (#19894)
10 сен 2025, 14:38
Не верифицирован
10 сен 2025, 14:38
99c36fa
Код
Авторство
О чём код?
/* 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 { /** * @param {string} request request string */ constructor(request) { super(request); } get type() { return "loader"; } get category() { return "loader"; } /** * @param {ModuleGraph} moduleGraph module graph * @returns {null | false | GetConditionFn} function to determine if the connection is active */ getCondition(moduleGraph) { return false; } } module.exports = LoaderDependency;