Created
August 14, 2016 08:05
-
-
Save chuck0523/2e0083d690f9e0e1e9dec105af213a0e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 0 */ | |
/***/ function(module, exports, __webpack_require__) { | |
'use strict'; | |
var greet = __webpack_require__(1).default; | |
var hello = __webpack_require__(1).hello; | |
greet(); | |
hello(); | |
/***/ }, | |
/* 1 */ | |
/***/ function(module, exports) { | |
'use strict'; | |
module.exports.hello = function () { | |
console.log('hello'); | |
}; | |
module.exports.yey = function () { | |
console.log('yey'); | |
}; | |
module.exports.default = function () { | |
console.log('hey'); | |
}; | |
/***/ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment