mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
/*
|
|
* Script-only addition used for production loader
|
|
*
|
|
*/
|
|
|
|
hook('fetch', function(fetch) {
|
|
return function(load) {
|
|
load.metadata.scriptLoad = true;
|
|
return fetch.call(this, load);
|
|
};
|
|
}); |