You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
342 B

  1. import 'intl';
  2. import 'intl/locale-data/jsonp/en.js';
  3. import 'es6-symbol/implement';
  4. import includes from 'array-includes';
  5. import assign from 'object-assign';
  6. import isNaN from 'is-nan';
  7. if (!Array.prototype.includes) {
  8. includes.shim();
  9. }
  10. if (!Object.assign) {
  11. Object.assign = assign;
  12. }
  13. if (!Number.isNaN) {
  14. Number.isNaN = isNaN;
  15. }