mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-02 22:37:39 +08:00
* Drop ie 11 support and move polyfills to a new package * More useful directions for what entry point to use https://github.com/facebook/create-react-app/pull/5090#discussion_r220313783 * Clear up what file this polyfill goes in https://github.com/facebook/create-react-app/pull/5090#discussion_r220313980 * Polyfill `window`, not `global` * Remove proxy polyfill file
28 lines
996 B
JavaScript
28 lines
996 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
'use strict';
|
|
|
|
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');
|
|
}
|
|
|
|
// fetch() polyfill for making API calls.
|
|
require('whatwg-fetch');
|
|
|
|
// 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');
|
|
|
|
// Support for...of (a commonly used syntax feature that requires Symbols)
|
|
require('core-js/es6/symbol');
|
|
// Support iterable spread (...Set, ...Map)
|
|
require('core-js/fn/array/from');
|