core-js 2.6.5 → 2.6.9
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 +14 -0
- package/README.md +82 -64
- package/bower.json +1 -1
- package/client/core.js +107 -86
- package/client/core.min.js +4 -4
- package/client/core.min.js.map +1 -1
- package/client/library.js +76 -55
- package/client/library.min.js +4 -4
- package/client/library.min.js.map +1 -1
- package/client/shim.js +29 -8
- package/client/shim.min.js +4 -4
- package/client/shim.min.js.map +1 -1
- package/library/modules/_core.js +1 -1
- package/library/modules/_object-assign.js +5 -1
- package/library/modules/_object-to-array.js +8 -3
- package/library/modules/es6.symbol.js +14 -2
- package/modules/_core.js +1 -1
- package/modules/_object-assign.js +5 -1
- package/modules/_object-to-array.js +8 -3
- package/modules/es6.symbol.js +14 -2
- package/package.json +3 -2
- package/scripts/postinstall.js +23 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
## Changelog
|
|
2
|
+
##### 2.6.9 [LEGACY] - 2019.05.27
|
|
3
|
+
- Some fixes and improvements of the `postinstall` script like support `npm` color config ([#556](https://github.com/zloirock/core-js/issues/556)) or adding support of `ADBLOCK` env variable
|
|
4
|
+
|
|
5
|
+
##### 2.6.8 [LEGACY] - 2019.05.22
|
|
6
|
+
- Added a workaround of a strange `npx` bug on `postinstall`, [#551](https://github.com/zloirock/core-js/issues/551)
|
|
7
|
+
|
|
8
|
+
##### 2.6.7 [LEGACY] - 2019.05.21
|
|
9
|
+
- Added one more workaround of alternative not completely correct `Symbol` polyfills, [#550](https://github.com/zloirock/core-js/issues/550), [#554](https://github.com/zloirock/core-js/issues/554)
|
|
10
|
+
|
|
11
|
+
##### 2.6.6 [LEGACY] - 2019.05.20
|
|
12
|
+
- Fixed IE8- non-enumerable properties support in `Object.{ assign, entries, values }`, [#541](https://github.com/zloirock/core-js/issues/541)
|
|
13
|
+
- Fixed support of primitives in `Object.getOwnPropertySymbols` in Chrome 38 / 39, [#539](https://github.com/zloirock/core-js/issues/539)
|
|
14
|
+
- Show a message on `postinstall`
|
|
15
|
+
|
|
2
16
|
##### 2.6.5 - 2019.02.15
|
|
3
17
|
- Fixed buggy `String#padStart` and `String#padEnd` mobile Safari implementations, [#414](https://github.com/zloirock/core-js/issues/414).
|
|
4
18
|
|