mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
(function(__$global) {
|
|
|
|
// indexOf polyfill for IE
|
|
var indexOf = Array.prototype.indexOf || function(item) {
|
|
for (var i = 0, l = this.length; i < l; i++)
|
|
if (this[i] === item)
|
|
return i;
|
|
return -1;
|
|
}
|
|
|
|
__$global.upgradeSystemLoader = function() {
|
|
__$global.upgradeSystemLoader = undefined; |