Last active
August 14, 2016 07:44
-
-
Save chuck0523/2851867857cd08f2f14adea36772609f to your computer and use it in GitHub Desktop.
This file contains hidden or 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) { | |
'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'); | |
}; | |
var greet = function greet() { | |
console.log('hey'); | |
}; | |
exports.default = greet; | |
/***/ } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment