Skip to content

Instantly share code, notes, and snippets.

@kohendrix
Created February 5, 2019 08:51
Show Gist options
  • Select an option

  • Save kohendrix/b428e36a6c64faaa913242b780e68005 to your computer and use it in GitHub Desktop.

Select an option

Save kohendrix/b428e36a6c64faaa913242b780e68005 to your computer and use it in GitHub Desktop.
Babel + es6 + Nodemon sample
'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