/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/hotCases/esm-output/runtime-and-split-chunks/common/shared.js
16 строк
288 B
Xiao
test: add more esm test cases (#20174)
27 ноя 2025, 17:00
Не верифицирован
27 ноя 2025, 17:00
0f95e22
Код
Авторство
О чём код?
export function commonFunction(input) { return `Common function processed: ${input}`; } export const commonData = { shared: true }; --- export function commonFunction(input) { return `Updated common function: ${input}`; } export const commonData = { shared: true, updated: true };