This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-11 02:26:06 -07:00
|
|
|
import 'intl';
|
2017-10-16 02:12:09 -07:00
|
|
|
import 'intl/locale-data/jsonp/en';
|
2017-05-11 02:26:06 -07:00
|
|
|
import 'es6-symbol/implement';
|
|
|
|
import includes from 'array-includes';
|
|
|
|
import assign from 'object-assign';
|
|
|
|
import isNaN from 'is-nan';
|
|
|
|
|
|
|
|
if (!Array.prototype.includes) {
|
|
|
|
includes.shim();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Object.assign) {
|
|
|
|
Object.assign = assign;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Number.isNaN) {
|
|
|
|
Number.isNaN = isNaN;
|
|
|
|
}
|