/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/configCases/module/split-chunks/index.js
16 строк
297 B
hai-x
feat: inline const for default export (#21189)
24 июн 2026, 11:15
Не верифицирован
24 июн 2026, 11:15
ef03f5e
Код
Авторство
О чём код?
import value from "./separate"; import { test as t } from "external-self"; it("should compile", () => { expect(value).toEqual({}); }); it("should circular depend on itself external", () => { expect(test()).toBe(42); expect(t()).toBe(42); }); function test() { return 42; } export { test };