Last active
January 7, 2017 01:17
-
-
Save jhsu/02d8bcc9677894daf8aeadddfc585348 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
var something = require('hello'); | |
var letter = 'A'; | |
function FooBar(words) { | |
var b = words || 'hello there'; | |
return something(b + "WOOOO"); | |
} | |
FooBar(letter); |
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
'use strict'; | |
var _hello = require('hello'); | |
var _hello11 = _interopRequireDefault9(_hello); | |
function _interopRequireDefault9(obj) { return obj && obj.__esModule ? obj : { default: obj }; } | |
var _hello10 = _interopRequireDefault8(_hello11.default); | |
function _interopRequireDefault8(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello9 = _interopRequireDefault7(_hello10.default); | |
function _interopRequireDefault7(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello8 = _interopRequireDefault6(_hello9.default); | |
function _interopRequireDefault6(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello7 = _interopRequireDefault5(_hello8.default); | |
function _interopRequireDefault5(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello6 = _interopRequireDefault4(_hello7.default); | |
function _interopRequireDefault4(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello5 = _interopRequireDefault3(_hello6.default); | |
function _interopRequireDefault3(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello4 = _interopRequireDefault2(_hello5.default); | |
function _interopRequireDefault2(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var _hello2 = _interopRequireDefault(_hello4.default); | |
function _interopRequireDefault(obj) { | |
return obj && obj.__esModule ? obj : { default: obj }; | |
} | |
var letter = 'A'; | |
function FooBar(words) { | |
var b = words || 'hello there'; | |
return (0, _hello2.default)(b + "WOOOO"); | |
} | |
FooBar(letter); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment