Created
February 5, 2019 08:51
-
-
Save kohendrix/b428e36a6c64faaa913242b780e68005 to your computer and use it in GitHub Desktop.
Babel + es6 + Nodemon sample
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 p = console.log; | |
| import obj from './test_module'; | |
| (function() { | |
| p('obj', obj); | |
| try { | |
| p('circleArea', obj.circleArea(5)); | |
| } catch (e) { | |
| console.error(e); | |
| } | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment