mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-27 15:06:14 +01:00
6 lines
195 B
JavaScript
6 lines
195 B
JavaScript
// This one is necessary for Inferno to do complex DOM patching on IE8.
|
|
// Not the fastest one or most spec compliant, but hey, it works!
|
|
if (!window.Int32Array) {
|
|
window.Int32Array = Array;
|
|
}
|