The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

24 lines
417 B

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