Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 14, 2016 08:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/2e0083d690f9e0e1e9dec105af213a0e to your computer and use it in GitHub Desktop.
Save chuck0523/2e0083d690f9e0e1e9dec105af213a0e to your computer and use it in GitHub Desktop.
/* 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