core-js 2.6.4 → 2.6.8
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 +113 -88
- package/client/core.min.js +4 -4
- package/client/core.min.js.map +1 -1
- package/client/library.js +82 -57
- package/client/library.min.js +4 -4
- package/client/library.min.js.map +1 -1
- package/client/shim.js +35 -10
- 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/library/modules/es7.string.pad-end.js +3 -1
- package/library/modules/es7.string.pad-start.js +3 -1
- 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/modules/es7.string.pad-end.js +3 -1
- package/modules/es7.string.pad-start.js +3 -1
- package/package.json +3 -2
- package/scripts/postinstall.js +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
## Changelog
|
|
2
|
+
##### 2.6.8 [LEGACY] - 2019.05.22
|
|
3
|
+
- Added a workaround of a strange `npx` bug on `postinstall`, [#551](https://github.com/zloirock/core-js/issues/551)
|
|
4
|
+
|
|
5
|
+
##### 2.6.7 [LEGACY] - 2019.05.21
|
|
6
|
+
- 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)
|
|
7
|
+
|
|
8
|
+
##### 2.6.6 [LEGACY] - 2019.05.20
|
|
9
|
+
- Fixed IE8- non-enumerable properties support in `Object.{ assign, entries, values }`, [#541](https://github.com/zloirock/core-js/issues/541)
|
|
10
|
+
- Fixed support of primitives in `Object.getOwnPropertySymbols` in Chrome 38 / 39, [#539](https://github.com/zloirock/core-js/issues/539)
|
|
11
|
+
- Show a message on `postinstall`
|
|
12
|
+
|
|
13
|
+
##### 2.6.5 - 2019.02.15
|
|
14
|
+
- Fixed buggy `String#padStart` and `String#padEnd` mobile Safari implementations, [#414](https://github.com/zloirock/core-js/issues/414).
|
|
15
|
+
|
|
2
16
|
##### 2.6.4 - 2019.02.07
|
|
3
17
|
- Added a workaround against crushing an old IE11.0.9600.16384 build, [#485](https://github.com/zloirock/core-js/issues/485).
|
|
4
18
|
|