UWFosterIT/es6-library-starter

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';
  },
  multiply: function(a, b) {
    return a * b;
  }
};

export default Another;