react-webpack-flux-babel-natliu
Version:
react 全栈
15 lines (13 loc) • 837 B
JavaScript
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
module.exports = function hello() {
return "hello";
}
},{}],2:[function(require,module,exports){
var hello = require("./hello");
var world = require("./world");
console.log(hello() + world());
},{"./hello":1,"./world":3}],3:[function(require,module,exports){
module.exports = function world() {
return "world";
}
},{}]},{},[2]);