Is it possible to pass options to ES6 imports?
How do you translate this:
var x = require(\'module\')(someoptions);
to ES6?
I believe you can use es6 module loaders. http://babeljs.io/docs/learn-es6/
System.import("lib/math").then(function(m) { m(youroptionshere); });