/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/worker/move-between-runtime/moduleB.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; --- export default 2; import "./module"; --- export default 3; import "./module"; --- export default 4; --- export default 5; if (Math.random() < 0) import("./chunk"); --- export default 6; if (Math.random() < 0) import("./chunk"); --- export default 7;