core-js 2.5.0 → 2.5.4

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 (60) hide show
  1. package/CHANGELOG.md +24 -1
  2. package/LICENSE +1 -1
  3. package/README.md +74 -74
  4. package/bower.json +8 -6
  5. package/build/build.ls +2 -2
  6. package/build/index.js +1 -1
  7. package/client/core.js +390 -386
  8. package/client/core.min.js +5 -5
  9. package/client/core.min.js.map +1 -1
  10. package/client/library.js +309 -304
  11. package/client/library.min.js +5 -5
  12. package/client/library.min.js.map +1 -1
  13. package/client/shim.js +456 -507
  14. package/client/shim.min.js +5 -5
  15. package/client/shim.min.js.map +1 -1
  16. package/fn/array/virtual/iterator.js +1 -1
  17. package/fn/array/virtual/values.js +1 -1
  18. package/fn/number/parse-float.js +1 -1
  19. package/fn/number/parse-int.js +1 -1
  20. package/fn/string/virtual/iterator.js +1 -1
  21. package/library/fn/array/virtual/iterator.js +1 -1
  22. package/library/fn/array/virtual/values.js +1 -1
  23. package/library/fn/number/parse-float.js +1 -1
  24. package/library/fn/number/parse-int.js +1 -1
  25. package/library/fn/string/virtual/iterator.js +1 -1
  26. package/library/modules/_core.js +1 -1
  27. package/library/modules/_export.js +2 -1
  28. package/library/modules/_iter-define.js +1 -2
  29. package/library/modules/_microtask.js +2 -2
  30. package/library/modules/_partial.js +1 -1
  31. package/library/modules/_promise-resolve.js +4 -0
  32. package/library/modules/_set-collection-of.js +1 -1
  33. package/library/modules/_typed-buffer.js +2 -2
  34. package/library/modules/_user-agent.js +4 -0
  35. package/library/modules/es6.array.slice.js +1 -1
  36. package/library/modules/es6.promise.js +10 -21
  37. package/library/modules/es6.symbol.js +8 -9
  38. package/library/modules/es7.observable.js +1 -1
  39. package/library/modules/es7.string.pad-end.js +3 -1
  40. package/library/modules/es7.string.pad-start.js +3 -1
  41. package/library/modules/web.timers.js +10 -11
  42. package/library/stage/2.js +1 -1
  43. package/modules/_core.js +1 -1
  44. package/modules/_iter-define.js +1 -2
  45. package/modules/_microtask.js +2 -2
  46. package/modules/_partial.js +1 -1
  47. package/modules/_promise-resolve.js +4 -0
  48. package/modules/_set-collection-of.js +1 -1
  49. package/modules/_typed-buffer.js +2 -2
  50. package/modules/_user-agent.js +4 -0
  51. package/modules/es6.array.slice.js +1 -1
  52. package/modules/es6.promise.js +10 -21
  53. package/modules/es6.symbol.js +8 -9
  54. package/modules/es7.observable.js +1 -1
  55. package/modules/es7.string.pad-end.js +3 -1
  56. package/modules/es7.string.pad-start.js +3 -1
  57. package/modules/library/_export.js +2 -1
  58. package/modules/web.timers.js +10 -11
  59. package/package.json +28 -26
  60. package/stage/2.js +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  ## Changelog
2
- ##### 2.5.0 - 2016.08.05
2
+ ##### 2.5.4 - 2018.03.27
3
+ - Fixed one case of deoptimization built-in iterators in V8, related [#377](https://github.com/zloirock/core-js/issues/377)
4
+ - Fixed some cases of iterators feature detection, [#368](https://github.com/zloirock/core-js/issues/368)
5
+ - Fixed manually entered NodeJS domains issue in `Promise`, [#367](https://github.com/zloirock/core-js/issues/367)
6
+ - Fixed `Number.{parseInt, parseFloat}` entry points
7
+ - Fixed `__(define|lookup)[GS]etter__` import in the `library` version
8
+
9
+ ##### 2.5.3 - 2017.12.12
10
+ - Fixed calling `onunhandledrejectionhandler` multiple times for one `Promise` chain, [#318](https://github.com/zloirock/core-js/issues/318)
11
+ - 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)
12
+ - 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)
13
+ - One more [#345](https://github.com/zloirock/core-js/issues/345)-related fix
14
+
15
+ ##### 2.5.2 - 2017.12.09
16
+ - `MutationObserver` no longer used for microtask implementation in iOS Safari because of bug with scrolling, [#339](https://github.com/zloirock/core-js/issues/339)
17
+ - Fixed `JSON.stringify(undefined, replacer)` case in the wrapper from the `Symbol` polyfill, [#345](https://github.com/zloirock/core-js/issues/345)
18
+ - `Array()` calls changed to `new Array()` for V8 optimisation
19
+
20
+ ##### 2.5.1 - 2017.09.01
21
+ - Updated `Promise#finally` per [tc39/proposal-promise-finally#37](https://github.com/tc39/proposal-promise-finally/issues/37)
22
+ - Optimized usage of some internal helpers for reducing size of `shim` version
23
+ - Fixed some entry points for virtual methods
24
+
25
+ ##### 2.5.0 - 2017.08.05
3
26
  - Added `Promise#finally` [stage 3 proposal](https://github.com/tc39/proposal-promise-finally), [#225](https://github.com/zloirock/core-js/issues/225)
4
27
  - Added `Promise.try` [stage 1 proposal](https://github.com/tc39/proposal-promise-try)
5
28
  - Added `Array#flatten` and `Array#flatMap` [stage 1 proposal](https://tc39.github.io/proposal-flatMap)
package/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2016 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