jmeas/es6-node-boilerplate

View on GitHub
src/another.js

Summary

Maintainability
A
0 mins
Test Coverage
//
// Always be sure to define variables.
// Never export directly, as 6to5 strips
// all import and export lines.
//

var Another = {
  anotherFn: function() {
    return 'ok';
  }
};

export default Another;