Anti Pattern - ES6 default exports
The new ES6 module system offers a built in export system coming with a better syntax than previously used CommonJS and AMD modules. You can now export modules with the following syntax: javascript class Foo {} export default Foo;...