Fix for ie11
This commit is contained in:
parent
e09d06b5cc
commit
af095f9d31
|
@ -31,4 +31,10 @@ if ( !window.fetch ) {
|
||||||
return target;
|
return target;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (typeof Object.getOwnPropertySymbols != 'function') {
|
||||||
|
Object.getOwnPropertySymbols = function(target) {
|
||||||
|
return [];
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,6 +109,3 @@ if ( checkLocalStorage ) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// IE 10/11 polyfill
|
|
||||||
!Object.getOwnPropertySymbols && (Object.getOwnPropertySymbols = function (){return[]});
|
|
Loading…
Reference in a new issue