polyfill.js 220 Bytes
Newer Older
afc163's avatar
afc163 committed
1 2
import 'core-js/es6/map';
import 'core-js/es6/set';
afc163's avatar
afc163 committed
3
import 'babel-polyfill';
afc163's avatar
afc163 committed
4 5 6 7 8

global.requestAnimationFrame =
  global.requestAnimationFrame || function requestAnimationFrame(callback) {
    setTimeout(callback, 0);
  };