safe-react/config/polyfills.js

16 lines
618 B
JavaScript
Raw Normal View History

2019-03-05 14:19:36 +00:00
// @flow
2018-03-01 08:05:56 +00:00
if (typeof Promise === 'undefined') {
// 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.
require('promise/lib/rejection-tracking').enable()
window.Promise = require('promise/lib/es6-extensions.js')
2018-03-01 08:05:56 +00:00
}
// fetch() polyfill for making API calls.
require('whatwg-fetch')
2018-03-01 08:05:56 +00:00
// Object.assign() is commonly used with React.
// It will use the native implementation if it's present and isn't buggy.
Object.assign = require('object-assign')