/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/cases/inner-graph/circular/inner.js
13 строк
307 B
Tobias Koppers
fix handling of circular references in the inner graph
02 окт 2019, 08:25
02 окт 2019, 08:25
f01e7d2
Код
Авторство
О чём код?
export function A(s) { return s + "A"; } export function B(s) { return s + "B"; } export function C(s) { return s + "C"; } export const exportAUsed = __webpack_exports_info__.A.used; export const exportBUsed = __webpack_exports_info__.B.used; export const exportCUsed = __webpack_exports_info__.C.used;