jmeas/es6-node-boilerplate

View on GitHub
src/index.js

Summary

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

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

export default MyLibrary;