/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v5.108.1
lib/runtime/HelperRuntimeModule.js
23 строки
544 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 */ "use strict"; const RuntimeModule = require("../RuntimeModule"); /** * Base class for runtime modules that only emit helper functions and do not * need special staging or attachment behavior beyond `RuntimeModule`. */ class HelperRuntimeModule extends RuntimeModule { /** * Creates a helper runtime module with the provided readable name. * @param {string} name a readable name */ constructor(name) { super(name); } } module.exports = HelperRuntimeModule;