mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
/*
|
|
* Script-only addition used for production loader
|
|
*
|
|
*/
|
|
|
|
hookConstructor(function(constructor) {
|
|
return function() {
|
|
constructor.call(this);
|
|
this.meta['*'] = this.meta['*'] || {};
|
|
this.meta['*'].scriptLoad = true;
|
|
};
|
|
}); |