Skip to content

Commit c9aff1b

Browse files
committed
remove some trailing spaces
1 parent 891001d commit c9aff1b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- Considering `document.all` as an object in some missed cases, see [ECMAScript Annex B 3.6](https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot)
44
- Avoid unnecessary promise creation and do not validate result in `%WrapForValid(Async)IteratorPrototype%.return`, [proposal-iterator-helpers/215](https://github.com/tc39/proposal-iterator-helpers/pull/215)
55
- Fixed the order creation of properties of iteration result object of some iterators (`value` should be created before `done`)
6-
- Fixed some cases of Safari < 13 bug - silent on non-writable array `.length` setting
6+
- Fixed some cases of Safari < 13 bug - silent on non-writable array `.length` setting
77
- Relaxed condition of re-usage native `WeakMap` for internal states with multiple `core-js` copies
88
- Availability cloning of `FileList` in the `structuredClone` polyfill extended to some more old engines versions
99
- Some stylistic changes
@@ -135,7 +135,7 @@
135135
- FF26- implementation does not properly convert argument to string
136136
- IE / Edge <16 implementation have wrong arity
137137
- Added `/full/` namespace as the replacement for `/features/` since it's more descriptive in context of the rest namespaces (`/es/``/stable/``/actual/``/full/`)
138-
- Avoided propagation of removed parts of proposals to upper stages. For example, `%TypedArray%.prototype.groupBy` was removed from the `Array` grouping proposal a long time ago. We can't completely remove this method since it's a breaking change. But this proposal has been promoted to stage 3 - so the proposal should be promoted without this method, this method should not be available in `/actual/` entries - but it should be available in early-stage entries to avoid breakage.
138+
- Avoided propagation of removed parts of proposals to upper stages. For example, `%TypedArray%.prototype.groupBy` was removed from the `Array` grouping proposal a long time ago. We can't completely remove this method since it's a breaking change. But this proposal has been promoted to stage 3 - so the proposal should be promoted without this method, this method should not be available in `/actual/` entries - but it should be available in early-stage entries to avoid breakage.
139139
- Significant internal refactoring and splitting of modules (but without exposing to public API since it will be a breaking change - it will be exposed in the next major version)
140140
- Bug fixes:
141141
- Fixed work of non-standard V8 `Error` features with wrapped `Error` constructors, [#1061](https://github.com/zloirock/core-js/issues/1061)
@@ -416,7 +416,7 @@
416416
##### [3.12.0 - 2021.05.06](https://github.com/zloirock/core-js/releases/tag/v3.12.0)
417417
- Added well-known symbol `Symbol.metadata` for [decorators stage 2 proposal](https://github.com/tc39/proposal-decorators)
418418
- Added well-known symbol `Symbol.matcher` for [pattern matching stage 1 proposal](https://github.com/tc39/proposal-pattern-matching)
419-
- Fixed regression of V8 ~ Node 0.12 `String(Symbol())` bug, [#933](https://github.com/zloirock/core-js/issues/933)
419+
- Fixed regression of V8 ~ Node 0.12 `String(Symbol())` bug, [#933](https://github.com/zloirock/core-js/issues/933)
420420

421421
##### [3.11.3 - 2021.05.05](https://github.com/zloirock/core-js/releases/tag/v3.11.3)
422422
- Native promise-based APIs `Promise#{ catch, finally }` returns polyfilled `Promise` instances when it's required
@@ -653,7 +653,7 @@
653653
- Added compat data for iOS 13 and Node 13.0
654654

655655
##### [3.3.2 - 2019.10.14](https://github.com/zloirock/core-js/releases/tag/v3.3.2)
656-
- Fixed compatibility of `core-js-compat` with Node 6 and Yarn, [#669](https://github.com/zloirock/core-js/issues/669)
656+
- Fixed compatibility of `core-js-compat` with Node 6 and Yarn, [#669](https://github.com/zloirock/core-js/issues/669)
657657

658658
##### [3.3.1 - 2019.10.13](https://github.com/zloirock/core-js/releases/tag/v3.3.1)
659659
- Fixed an NPM publishing issue
@@ -1081,7 +1081,7 @@
10811081
- [String padding](https://github.com/tc39/proposal-string-pad-start-end) to [stage 4 (ES2017)](https://tc39.es/ecma262/2017/#sec-string.prototype.padend)
10821082
- [`global`](https://github.com/tc39/proposal-global) to [stage 3](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-09/sept-28.md#revisit-systemglobal--global)
10831083
- [String trimming](https://github.com/tc39/proposal-string-left-right-trim) to [stage 2](https://github.com/rwaldron/tc39-notes/blob/master/es7/2016-07/jul-27.md#10iic-trimstarttrimend)
1084-
- Updated typed arrays to the modern (ES2016+) arguments validation,
1084+
- Updated typed arrays to the modern (ES2016+) arguments validation,
10851085
[#293](https://github.com/zloirock/core-js/pull/293)
10861086
- Fixed `%TypedArray%.from` Safari bug, [#285](https://github.com/zloirock/core-js/issues/285)
10871087
- Fixed compatibility with old version of Prototype.js, [#278](https://github.com/zloirock/core-js/issues/278), [#289](https://github.com/zloirock/core-js/issues/289)
@@ -1200,7 +1200,7 @@
12001200
- Additional fixes for `String#split` (`RegExp#@@split`)
12011201
- **Improvements**:
12021202
- Correct subclassing wrapped collections, `Number` and `RegExp` constructors with native class syntax
1203-
- Correct support `SharedArrayBuffer` and buffers from other realms in typed arrays wrappers
1203+
- Correct support `SharedArrayBuffer` and buffers from other realms in typed arrays wrappers
12041204
- Additional validations for `Object.{defineProperty, getOwnPropertyDescriptor}` and `Reflect.defineProperty`
12051205
- **Bug Fixes**:
12061206
- Fixed some cases `Array#lastIndexOf` with negative second argument

0 commit comments

Comments
 (0)