UWFosterIT/es6-library-starter

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import Another from './another';

const MyLibrary = {
  anotherFn: Another.anotherFn,
  multiply: Another.multiply,
  mainFn() {
    return 'hello';
  }
};

export default MyLibrary;