Newer
Older
pixi.js / packages / polyfill / src / Promise.js
@Matt Karl Matt Karl on 6 Dec 2017 163 bytes Texture and Resources Refactor (v5) (#4507)
import { Polyfill } from 'es6-promise-polyfill';

// Support for IE 9 - 11 which does not include Promises
if (!window.Promise)
{
    window.Promise = Polyfill;
}