I hear that dynamic exports/imports are not allowed in es6.
This website Uses the example export default 5 * 7;
as if it were a legal, static export. This seems reasonable since it clearly evaluates to the static value of 35, but I'm wondering what exactly qualifies as a static export now.
This Code uses export default Backbone.Router.extend({...});
as if it were a legal, static, export. This seems fishy to me as it seems like a dynamic export to me (exporting the result of a function call).