/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
examples/mixed/amd.js
12 строк
298 B
Tobias Koppers
removed LabeledModules
07 сен 2016, 13:25
07 сен 2016, 13:25
a14e563
Код
Авторство
О чём код?
// AMD Module Format define( "app/amd", // anonym is also supported ["./commonjs", "./harmony"], function(commonjs1, harmony1) { // but you can use CommonJs-style requires: var commonjs2 = require("./commonjs"); var harmony2 = require("./harmony"); // Do something... return 456; } );