/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/cases/scope-hoisting/circular-root-export/root.js
13 строк
249 B
Tobias Koppers
hoist exports to the top of a concatenated module
21 фев 2020, 14:21
21 фев 2020, 14:21
fdeded0
Код
Авторство
О чём код?
export { test } from "./external"; import * as c from "./module"; export { c }; import * as cc from "./module"; export { cc }; export * from "./module"; export default "d"; export function a() { return "a"; } export function aa() { return "aa"; }