core-js 2.5.1 → 2.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +1 -1
- package/README.md +74 -74
- package/bower.json +1 -1
- package/client/core.js +449 -437
- package/client/core.min.js +5 -5
- package/client/core.min.js.map +1 -1
- package/client/library.js +373 -360
- package/client/library.min.js +5 -5
- package/client/library.min.js.map +1 -1
- package/client/shim.js +421 -409
- package/client/shim.min.js +5 -5
- package/client/shim.min.js.map +1 -1
- package/fn/number/parse-float.js +1 -1
- package/fn/number/parse-int.js +1 -1
- package/library/fn/number/parse-float.js +1 -1
- package/library/fn/number/parse-int.js +1 -1
- package/library/modules/_core.js +1 -1
- package/library/modules/_export.js +2 -1
- package/library/modules/_iter-define.js +1 -2
- package/library/modules/_microtask.js +2 -2
- package/library/modules/_partial.js +1 -1
- package/library/modules/_set-collection-of.js +1 -1
- package/library/modules/_typed-buffer.js +2 -2
- package/library/modules/_user-agent.js +4 -0
- package/library/modules/es6.array.slice.js +1 -1
- package/library/modules/es6.promise.js +8 -11
- package/library/modules/es6.reflect.set.js +5 -3
- package/library/modules/es6.symbol.js +5 -5
- package/library/modules/es7.observable.js +1 -1
- package/library/modules/es7.string.pad-end.js +3 -1
- package/library/modules/es7.string.pad-start.js +3 -1
- package/library/modules/web.timers.js +2 -2
- package/library/stage/2.js +1 -1
- package/modules/_core.js +1 -1
- package/modules/_iter-define.js +1 -2
- package/modules/_microtask.js +2 -2
- package/modules/_partial.js +1 -1
- package/modules/_set-collection-of.js +1 -1
- package/modules/_typed-buffer.js +2 -2
- package/modules/_user-agent.js +4 -0
- package/modules/es6.array.slice.js +1 -1
- package/modules/es6.promise.js +8 -11
- package/modules/es6.reflect.set.js +5 -3
- package/modules/es6.symbol.js +5 -5
- package/modules/es7.observable.js +1 -1
- package/modules/es7.string.pad-end.js +3 -1
- package/modules/es7.string.pad-start.js +3 -1
- package/modules/library/_export.js +2 -1
- package/modules/web.timers.js +2 -2
- package/package.json +21 -21
- package/stage/2.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
## Changelog
|
|
2
|
+
##### 2.5.5 - 2018.04.08
|
|
3
|
+
- Fix some edge cases of `Reflect.set`, [#392](https://github.com/zloirock/core-js/issues/392) and [#393](https://github.com/zloirock/core-js/issues/393)
|
|
4
|
+
|
|
5
|
+
##### 2.5.4 - 2018.03.27
|
|
6
|
+
- Fixed one case of deoptimization built-in iterators in V8, related [#377](https://github.com/zloirock/core-js/issues/377)
|
|
7
|
+
- Fixed some cases of iterators feature detection, [#368](https://github.com/zloirock/core-js/issues/368)
|
|
8
|
+
- Fixed manually entered NodeJS domains issue in `Promise`, [#367](https://github.com/zloirock/core-js/issues/367)
|
|
9
|
+
- Fixed `Number.{parseInt, parseFloat}` entry points
|
|
10
|
+
- Fixed `__(define|lookup)[GS]etter__` import in the `library` version
|
|
11
|
+
|
|
12
|
+
##### 2.5.3 - 2017.12.12
|
|
13
|
+
- Fixed calling `onunhandledrejectionhandler` multiple times for one `Promise` chain, [#318](https://github.com/zloirock/core-js/issues/318)
|
|
14
|
+
- Forced replacement of `String#{padStart, padEnd}` in Safari 10 because of [a bug](https://bugs.webkit.org/show_bug.cgi?id=161944), [#280](https://github.com/zloirock/core-js/issues/280)
|
|
15
|
+
- Fixed `Array#@@iterator` in a very rare version of `WebKit`, [#236](https://github.com/zloirock/core-js/issues/236) and [#237](https://github.com/zloirock/core-js/issues/237)
|
|
16
|
+
- One more [#345](https://github.com/zloirock/core-js/issues/345)-related fix
|
|
17
|
+
|
|
18
|
+
##### 2.5.2 - 2017.12.09
|
|
19
|
+
- `MutationObserver` no longer used for microtask implementation in iOS Safari because of bug with scrolling, [#339](https://github.com/zloirock/core-js/issues/339)
|
|
20
|
+
- Fixed `JSON.stringify(undefined, replacer)` case in the wrapper from the `Symbol` polyfill, [#345](https://github.com/zloirock/core-js/issues/345)
|
|
21
|
+
- `Array()` calls changed to `new Array()` for V8 optimisation
|
|
22
|
+
|
|
2
23
|
##### 2.5.1 - 2017.09.01
|
|
3
24
|
- Updated `Promise#finally` per [tc39/proposal-promise-finally#37](https://github.com/tc39/proposal-promise-finally/issues/37)
|
|
4
25
|
- Optimized usage of some internal helpers for reducing size of `shim` version
|
package/LICENSE
CHANGED