/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/worker/move-between-runtime/moduleA.js
19 строк
294 B
Tobias Koppers
add test case for moving modules and chunks between runtimes
27 май 2021, 00:29
27 май 2021, 00:29
cf0c816
Код
Авторство
О чём код?
export default 0; --- export default 1; import "./module"; --- export default 2; import "./module"; --- export default 3; --- export default 4; if (Math.random() < 0) import("./chunk"); --- export default 5; if (Math.random() < 0) import("./chunk"); --- export default 6; --- export default 7;