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

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