You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The question can be rephrased as: will you ever implement a loader in Sheperd? Be it a watered-down Harmony modules loader or something fancy like this pseudocode:
var modules = [name: 'plugin_one', url: 'http://example.com/plugin_one.js',
name: 'plugin_two', url: 'http://example.com/plugin_two.js'];
for (var i = 0; i < modules.length; i+=1) {
var module_obj = module(modules[i].name).at(modules[i].url);
// The modules have a common interface and will export the function doSomething
module_obj.doSomething ();
}
The text was updated successfully, but these errors were encountered:
@xcambar I'm wondering what you are referring to here about security.
I have implemented an XHR & eval-based approach to the loader polyfill here - https://github.com/guybedford/es6-loader. I'd be interested to hear your thoughts.
The question can be rephrased as: will you ever implement a loader in Sheperd? Be it a watered-down Harmony modules loader or something fancy like this pseudocode:
The text was updated successfully, but these errors were encountered: