Newer
Older
pixi.js / src / polyfill / index.js
@Mat Groves Mat Groves on 20 Feb 2016 295 bytes added patches for arrays (IE9)
require('./Object.assign');
require('./requestAnimationFrame');
require('./Math.sign');

if(!window.ArrayBuffer)window.ArrayBuffer = Array;
if(!window.Float32Array)window.Float32Array = Array;
if(!window.Uint32Array)window.Uint32Array = Array;
if(!window.Uint16Array)window.Uint16Array = Array;