lnked/react-starter

View on GitHub
webpack/jest/shim.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Get rids of the missing requestAnimationFrame polyfill warning.
 *
 * @link https://reactjs.org/docs/javascript-environment-requirements.html
 * @copyright 2004-present Facebook. All Rights Reserved.
 */
global.requestAnimationFrame = function (callback) {
  setTimeout(callback, 0)
}