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.
Files changed (52) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/LICENSE +1 -1
  3. package/README.md +74 -74
  4. package/bower.json +1 -1
  5. package/client/core.js +449 -437
  6. package/client/core.min.js +5 -5
  7. package/client/core.min.js.map +1 -1
  8. package/client/library.js +373 -360
  9. package/client/library.min.js +5 -5
  10. package/client/library.min.js.map +1 -1
  11. package/client/shim.js +421 -409
  12. package/client/shim.min.js +5 -5
  13. package/client/shim.min.js.map +1 -1
  14. package/fn/number/parse-float.js +1 -1
  15. package/fn/number/parse-int.js +1 -1
  16. package/library/fn/number/parse-float.js +1 -1
  17. package/library/fn/number/parse-int.js +1 -1
  18. package/library/modules/_core.js +1 -1
  19. package/library/modules/_export.js +2 -1
  20. package/library/modules/_iter-define.js +1 -2
  21. package/library/modules/_microtask.js +2 -2
  22. package/library/modules/_partial.js +1 -1
  23. package/library/modules/_set-collection-of.js +1 -1
  24. package/library/modules/_typed-buffer.js +2 -2
  25. package/library/modules/_user-agent.js +4 -0
  26. package/library/modules/es6.array.slice.js +1 -1
  27. package/library/modules/es6.promise.js +8 -11
  28. package/library/modules/es6.reflect.set.js +5 -3
  29. package/library/modules/es6.symbol.js +5 -5
  30. package/library/modules/es7.observable.js +1 -1
  31. package/library/modules/es7.string.pad-end.js +3 -1
  32. package/library/modules/es7.string.pad-start.js +3 -1
  33. package/library/modules/web.timers.js +2 -2
  34. package/library/stage/2.js +1 -1
  35. package/modules/_core.js +1 -1
  36. package/modules/_iter-define.js +1 -2
  37. package/modules/_microtask.js +2 -2
  38. package/modules/_partial.js +1 -1
  39. package/modules/_set-collection-of.js +1 -1
  40. package/modules/_typed-buffer.js +2 -2
  41. package/modules/_user-agent.js +4 -0
  42. package/modules/es6.array.slice.js +1 -1
  43. package/modules/es6.promise.js +8 -11
  44. package/modules/es6.reflect.set.js +5 -3
  45. package/modules/es6.symbol.js +5 -5
  46. package/modules/es7.observable.js +1 -1
  47. package/modules/es7.string.pad-end.js +3 -1
  48. package/modules/es7.string.pad-start.js +3 -1
  49. package/modules/library/_export.js +2 -1
  50. package/modules/web.timers.js +2 -2
  51. package/package.json +21 -21
  52. 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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2017 Denis Pushkarev
1
+ Copyright (c) 2014-2018 Denis Pushkarev
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal