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.
23 lines
417 B
23 lines
417 B
import 'intl'; |
|
import 'intl/locale-data/jsonp/en'; |
|
import 'es6-symbol/implement'; |
|
import includes from 'array-includes'; |
|
import assign from 'object-assign'; |
|
import values from 'object.values'; |
|
import isNaN from 'is-nan'; |
|
|
|
if (!Array.prototype.includes) { |
|
includes.shim(); |
|
} |
|
|
|
if (!Object.assign) { |
|
Object.assign = assign; |
|
} |
|
|
|
if (!Object.values) { |
|
values.shim(); |
|
} |
|
|
|
if (!Number.isNaN) { |
|
Number.isNaN = isNaN; |
|
}
|
|
|