/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/container/container-reference/test.config.js
28 строк
450 B
Alexander Akait
style: set `arrowParens` to `true` (#19706)
16 июл 2025, 19:13
Не верифицирован
16 июл 2025, 19:13
703d9ac
Код
Авторство
О чём код?
"use strict"; module.exports = { moduleScope(scope) { scope.ABC = { get(module) { return new Promise((resolve) => { setTimeout(() => { resolve(() => `abc ${module}`); }, 100); }); } }; scope.DEF = { get(module) { return new Promise((resolve) => { setTimeout(() => { resolve(() => ({ __esModule: true, module, default: "def" })); }, 100); }); } }; } };