2018-05-08 03:02:19 +00:00
|
|
|
// @no-flow
|
2018-02-18 16:13:29 +00:00
|
|
|
if (typeof Promise === "undefined") {
|
2018-02-17 21:28:47 +00:00
|
|
|
// Rejection tracking prevents a common issue where React gets into an
|
|
|
|
// inconsistent state due to an error, but it gets swallowed by a Promise,
|
|
|
|
// and the user has no idea what causes React's erratic future behavior.
|
2018-02-18 16:13:29 +00:00
|
|
|
require("promise/lib/rejection-tracking").enable();
|
|
|
|
window.Promise = require("promise/lib/es6-extensions.js");
|
2018-02-17 21:28:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// fetch() polyfill for making API calls.
|
2018-02-18 16:13:29 +00:00
|
|
|
require("whatwg-fetch");
|
2018-02-17 21:28:47 +00:00
|
|
|
|
|
|
|
// Object.assign() is commonly used with React.
|
|
|
|
// It will use the native implementation if it's present and isn't buggy.
|
2018-02-18 16:13:29 +00:00
|
|
|
Object.assign = require("object-assign");
|
2018-02-17 21:28:47 +00:00
|
|
|
|
|
|
|
// In tests, polyfill requestAnimationFrame since jsdom doesn't provide it yet.
|
|
|
|
// We don't polyfill it in the browser--this is user's responsibility.
|
2018-02-18 16:13:29 +00:00
|
|
|
if (process.env.NODE_ENV === "test") {
|
|
|
|
require("raf").polyfill(global);
|
2018-02-17 21:28:47 +00:00
|
|
|
}
|