Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 14, 2016 07:37
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/b02d7cce9c775a8f1249119c9574376b to your computer and use it in GitHub Desktop.
Save chuck0523/b02d7cce9c775a8f1249119c9574376b to your computer and use it in GitHub Desktop.
/******/ ([
/* 0 */
/***/ function(module, exports, __webpack_require__) {
'use strict';
var _greet = __webpack_require__(1);
var _greet2 = _interopRequireDefault(_greet);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
(0, _greet2.default)();
(0, _greet.hello)();
/***/ },
/* 1 */
/***/ function(module, exports) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var hello = exports.hello = function hello() {
console.log('hello');
};
var yey = exports.yey = function yey() {
console.log('yey');
};
exports.default = greet = function greet() {
console.log('hey');
};
/***/ }
/******/ ]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment