Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: zloirock/core-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.17.3
Choose a base ref
...
head repository: zloirock/core-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.18.0
Choose a head ref

Commits on Sep 9, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    29e2b53 View commit details
  2. some simplification

    (`getMethod` returns only functions and `undefined`)
    zloirock committed Sep 9, 2021
    Copy the full SHA
    1ca8fb7 View commit details
  3. Copy the full SHA
    27ddeb4 View commit details
  4. Copy the full SHA
    e22fade View commit details

Commits on Sep 10, 2021

  1. update dependencies

    zloirock committed Sep 10, 2021
    Copy the full SHA
    959bb6c View commit details

Commits on Sep 11, 2021

  1. update eslint-plugin-unicorn

    zloirock committed Sep 11, 2021
    Copy the full SHA
    1cf621c View commit details
  2. add some tests

    zloirock committed Sep 11, 2021
    Copy the full SHA
    90ec35f View commit details
  3. Copy the full SHA
    d178b48 View commit details

Commits on Sep 13, 2021

  1. update the changelog

    zloirock committed Sep 13, 2021
    Copy the full SHA
    4c543f2 View commit details
  2. Copy the full SHA
    ef0aac7 View commit details
  3. improve readability

    zloirock committed Sep 13, 2021
    Copy the full SHA
    e56b16a View commit details
  4. Copy the full SHA
    bcf07bf View commit details
  5. update dependencies

    zloirock committed Sep 13, 2021
    Copy the full SHA
    097e8c7 View commit details
  6. fix spelling

    zloirock committed Sep 13, 2021
    Copy the full SHA
    800df87 View commit details

Commits on Sep 14, 2021

  1. Copy the full SHA
    ddd4e58 View commit details
  2. Copy the full SHA
    3dadf8a View commit details

Commits on Sep 15, 2021

  1. check Function.prototype.call in the feature detection since unlike…

    … `Reflect.construct` most likely it's not wrapped
    zloirock committed Sep 15, 2021
    Copy the full SHA
    16447e4 View commit details
  2. Copy the full SHA
    8783ea2 View commit details
  3. fix a copyright note

    zloirock committed Sep 15, 2021
    Copy the full SHA
    4f886ee View commit details
  4. Copy the full SHA
    4ccf78d View commit details
  5. fix style of some imports

    zloirock committed Sep 15, 2021
    Copy the full SHA
    93fa362 View commit details
  6. Copy the full SHA
    dc65230 View commit details

Commits on Sep 16, 2021

  1. Copy the full SHA
    b876566 View commit details
  2. Copy the full SHA
    c3d850b View commit details
  3. update dependencies

    zloirock committed Sep 16, 2021
    Copy the full SHA
    b8c014f View commit details

Commits on Sep 17, 2021

  1. update the changelog

    zloirock committed Sep 17, 2021
    Copy the full SHA
    08f00c8 View commit details
  2. update dependencies

    zloirock committed Sep 17, 2021
    Copy the full SHA
    7377472 View commit details

Commits on Sep 18, 2021

  1. minor Array.from fixes

    zloirock committed Sep 18, 2021
    Copy the full SHA
    9beeaad View commit details
  2. Copy the full SHA
    138a413 View commit details
  3. update dependencies

    zloirock committed Sep 18, 2021
    Copy the full SHA
    f73a13f View commit details
  4. Copy the full SHA
    817c4dd View commit details
  5. disable no-console for zx

    zloirock committed Sep 18, 2021
    Copy the full SHA
    077e863 View commit details

Commits on Sep 19, 2021

  1. Copy the full SHA
    61e9d1c View commit details
  2. avoid unnecessary .push

    zloirock committed Sep 19, 2021
    Copy the full SHA
    ab68dc0 View commit details
  3. some stylistic changes

    zloirock committed Sep 19, 2021
    Copy the full SHA
    0916d24 View commit details
  4. 3.18.0

    zloirock committed Sep 19, 2021
    Copy the full SHA
    272ac1b View commit details
Showing with 2,720 additions and 1,839 deletions.
  1. +8 −0 .eslintrc.js
  2. +12 −0 CHANGELOG.md
  3. +29 −7 README.md
  4. +1 −1 deno/corejs/README.md
  5. +1,676 −1,390 deno/corejs/index.js
  6. +1 −1 lerna.json
  7. +10 −9 package.json
  8. +3 −3 packages/core-js-builder/package.json
  9. +1 −1 packages/core-js-bundle/package.json
  10. +3 −3 packages/core-js-compat/README.md
  11. +1 −1 packages/core-js-compat/package.json
  12. +8 −4 packages/core-js-compat/src/data.mjs
  13. +1 −0 packages/core-js-compat/src/mapping.mjs
  14. +4 −0 packages/core-js-compat/src/modules-by-versions.mjs
  15. +3 −2 packages/core-js-pure/override/internals/collection.js
  16. +3 −1 packages/core-js-pure/override/internals/export.js
  17. +2 −1 packages/core-js-pure/override/internals/get-built-in.js
  18. +1 −1 packages/core-js-pure/override/internals/regexp-exec.js
  19. 0 ...e-js-pure/override/{internals/regexp-exec-abstract.js → modules/esnext.typed-array.from-async.js}
  20. +1 −1 packages/core-js-pure/override/modules/web.dom-collections.iterator.js
  21. +1 −1 packages/core-js-pure/package.json
  22. +2 −1 packages/core-js/es/promise/all-settled.js
  23. +2 −1 packages/core-js/es/promise/any.js
  24. +8 −0 packages/core-js/features/array/from-async.js
  25. +2 −0 packages/core-js/features/array/index.js
  26. +2 −1 packages/core-js/features/map/from.js
  27. +2 −1 packages/core-js/features/map/group-by.js
  28. +2 −1 packages/core-js/features/map/key-by.js
  29. +2 −1 packages/core-js/features/map/of.js
  30. +2 −1 packages/core-js/features/promise/try.js
  31. +2 −1 packages/core-js/features/set/from.js
  32. +2 −1 packages/core-js/features/set/of.js
  33. +1 −0 packages/core-js/features/typed-array/from-async.js
  34. +2 −0 packages/core-js/features/typed-array/index.js
  35. +2 −1 packages/core-js/features/weak-map/from.js
  36. +2 −1 packages/core-js/features/weak-map/of.js
  37. +2 −1 packages/core-js/features/weak-set/from.js
  38. +2 −1 packages/core-js/features/weak-set/of.js
  39. +8 −0 packages/core-js/internals/a-callable.js
  40. +8 −0 packages/core-js/internals/a-constructor.js
  41. +0 −5 packages/core-js/internals/a-function.js
  42. +4 −5 packages/core-js/internals/a-possible-prototype.js
  43. +2 −3 packages/core-js/internals/an-instance.js
  44. +4 −4 packages/core-js/internals/an-object.js
  45. +5 −4 packages/core-js/internals/array-buffer-view-core.js
  46. +7 −1 packages/core-js/internals/array-buffer.js
  47. +32 −0 packages/core-js/internals/array-from-async.js
  48. +6 −5 packages/core-js/internals/array-from.js
  49. +2 −2 packages/core-js/internals/array-reduce.js
  50. +3 −2 packages/core-js/internals/array-species-constructor.js
  51. +3 −3 packages/core-js/internals/array-unique-by.js
  52. +2 −2 packages/core-js/internals/async-from-sync-iterator.js
  53. +5 −4 packages/core-js/internals/async-iterator-create-proxy.js
  54. +26 −15 packages/core-js/internals/async-iterator-iteration.js
  55. +5 −4 packages/core-js/internals/async-iterator-prototype.js
  56. +2 −1 packages/core-js/internals/classof.js
  57. +2 −2 packages/core-js/internals/collection-add-all.js
  58. +2 −2 packages/core-js/internals/collection-delete-all.js
  59. +4 −3 packages/core-js/internals/collection-from.js
  60. +2 −1 packages/core-js/internals/collection.js
  61. +20 −12 packages/core-js/internals/define-iterator.js
  62. +1 −0 packages/core-js/internals/export.js
  63. +2 −2 packages/core-js/internals/function-bind-context.js
  64. +2 −2 packages/core-js/internals/function-bind.js
  65. +17 −0 packages/core-js/internals/function-name.js
  66. +2 −5 packages/core-js/internals/get-async-iterator.js
  67. +3 −2 packages/core-js/internals/get-built-in.js
  68. +3 −2 packages/core-js/internals/get-iterator-method.js
  69. +5 −5 packages/core-js/internals/get-iterator.js
  70. +4 −3 packages/core-js/internals/get-method.js
  71. +2 −1 packages/core-js/internals/inherit-if-required.js
  72. +2 −1 packages/core-js/internals/inspect-source.js
  73. +2 −2 packages/core-js/internals/is-array.js
  74. +5 −0 packages/core-js/internals/is-callable.js
  75. +41 −0 packages/core-js/internals/is-constructor.js
  76. +2 −1 packages/core-js/internals/is-forced.js
  77. +3 −1 packages/core-js/internals/is-object.js
  78. +2 −1 packages/core-js/internals/is-symbol.js
  79. +1 −1 packages/core-js/internals/iterate.js
  80. +3 −2 packages/core-js/internals/iterator-close.js
  81. +8 −7 packages/core-js/internals/iterator-create-proxy.js
  82. +4 −3 packages/core-js/internals/iterators-core.js
  83. +4 −3 packages/core-js/internals/map-upsert.js
  84. +2 −1 packages/core-js/internals/native-weak-map.js
  85. +3 −3 packages/core-js/internals/new-promise-capability.js
  86. +6 −1 packages/core-js/internals/number-parse-float.js
  87. +6 −1 packages/core-js/internals/number-parse-int.js
  88. +7 −5 packages/core-js/internals/object-get-prototype-of.js
  89. +4 −3 packages/core-js/internals/ordinary-to-primitive.js
  90. +12 −6 packages/core-js/internals/redefine.js
  91. +8 −13 packages/core-js/internals/regexp-exec-abstract.js
  92. +1 −1 packages/core-js/internals/regexp-unsupported-dot-all.js
  93. +1 −1 packages/core-js/internals/regexp-unsupported-ncg.js
  94. +1 −1 packages/core-js/internals/shared.js
  95. +2 −2 packages/core-js/internals/species-constructor.js
  96. +4 −1 packages/core-js/internals/string-trim-forced.js
  97. +3 −2 packages/core-js/internals/task.js
  98. +3 −2 packages/core-js/internals/to-primitive.js
  99. +2 −2 packages/core-js/internals/to-string.js
  100. +7 −0 packages/core-js/internals/try-to-string.js
  101. +4 −2 packages/core-js/internals/typed-array-from.js
  102. +2 −2 packages/core-js/modules/es.array.flat-map.js
  103. +2 −1 packages/core-js/modules/es.array.of.js
  104. +3 −2 packages/core-js/modules/es.array.slice.js
  105. +2 −2 packages/core-js/modules/es.array.sort.js
  106. +2 −2 packages/core-js/modules/es.date.to-primitive.js
  107. +2 −1 packages/core-js/modules/es.function.has-instance.js
  108. +2 −1 packages/core-js/modules/es.function.name.js
  109. +2 −2 packages/core-js/modules/es.object.define-getter.js
  110. +2 −2 packages/core-js/modules/es.object.define-setter.js
  111. +3 −3 packages/core-js/modules/es.parse-float.js
  112. +3 −3 packages/core-js/modules/es.parse-int.js
  113. +2 −2 packages/core-js/modules/es.promise.all-settled.js
  114. +2 −2 packages/core-js/modules/es.promise.any.js
  115. +3 −2 packages/core-js/modules/es.promise.finally.js
  116. +10 −9 packages/core-js/modules/es.promise.js
  117. +2 −2 packages/core-js/modules/es.reflect.apply.js
  118. +3 −3 packages/core-js/modules/es.reflect.construct.js
  119. +4 −4 packages/core-js/modules/es.regexp.test.js
  120. +2 −1 packages/core-js/modules/es.regexp.to-string.js
  121. +6 −16 packages/core-js/modules/es.string.match-all.js
  122. +3 −2 packages/core-js/modules/es.string.match.js
  123. +9 −4 packages/core-js/modules/es.string.raw.js
  124. +5 −3 packages/core-js/modules/es.string.replace-all.js
  125. +5 −3 packages/core-js/modules/es.string.replace.js
  126. +3 −2 packages/core-js/modules/es.string.search.js
  127. +3 −2 packages/core-js/modules/es.string.split.js
  128. +1 −1 packages/core-js/modules/es.string.trim-end.js
  129. +1 −1 packages/core-js/modules/es.string.trim-start.js
  130. +2 −1 packages/core-js/modules/es.symbol.description.js
  131. +6 −3 packages/core-js/modules/es.symbol.js
  132. +4 −4 packages/core-js/modules/es.typed-array.iterator.js
  133. +2 −2 packages/core-js/modules/es.typed-array.sort.js
  134. +1 −1 packages/core-js/modules/esnext.aggregate-error.js
  135. +8 −0 packages/core-js/modules/esnext.array.from-async.js
  136. +2 −2 packages/core-js/modules/esnext.async-iterator.filter.js
  137. +3 −3 packages/core-js/modules/esnext.async-iterator.flat-map.js
  138. +4 −6 packages/core-js/modules/esnext.async-iterator.from.js
  139. +2 −2 packages/core-js/modules/esnext.async-iterator.map.js
  140. +3 −3 packages/core-js/modules/esnext.async-iterator.reduce.js
  141. +1 −1 packages/core-js/modules/esnext.async-iterator.to-array.js
  142. +1 −1 packages/core-js/modules/esnext.global-this.js
  143. +2 −1 packages/core-js/modules/esnext.iterator.constructor.js
  144. +2 −2 packages/core-js/modules/esnext.iterator.every.js
  145. +2 −2 packages/core-js/modules/esnext.iterator.filter.js
  146. +2 −2 packages/core-js/modules/esnext.iterator.find.js
  147. +4 −4 packages/core-js/modules/esnext.iterator.flat-map.js
  148. +2 −4 packages/core-js/modules/esnext.iterator.from.js
  149. +2 −2 packages/core-js/modules/esnext.iterator.map.js
  150. +2 −2 packages/core-js/modules/esnext.iterator.reduce.js
  151. +2 −2 packages/core-js/modules/esnext.iterator.some.js
  152. +2 −2 packages/core-js/modules/esnext.map.filter.js
  153. +9 −7 packages/core-js/modules/esnext.map.group-by.js
  154. +3 −3 packages/core-js/modules/esnext.map.key-by.js
  155. +1 −1 packages/core-js/modules/esnext.map.key-of.js
  156. +2 −2 packages/core-js/modules/esnext.map.map-keys.js
  157. +2 −2 packages/core-js/modules/esnext.map.map-values.js
  158. +2 −2 packages/core-js/modules/esnext.map.merge.js
  159. +2 −2 packages/core-js/modules/esnext.map.reduce.js
  160. +1 −1 packages/core-js/modules/esnext.map.update-or-insert.js
  161. +3 −3 packages/core-js/modules/esnext.map.update.js
  162. +16 −14 packages/core-js/modules/esnext.observable.js
  163. +1 −1 packages/core-js/modules/esnext.promise.all-settled.js
  164. +1 −1 packages/core-js/modules/esnext.promise.any.js
  165. +2 −2 packages/core-js/modules/esnext.set.difference.js
  166. +2 −2 packages/core-js/modules/esnext.set.filter.js
  167. +3 −3 packages/core-js/modules/esnext.set.intersection.js
  168. +2 −2 packages/core-js/modules/esnext.set.is-disjoint-from.js
  169. +4 −3 packages/core-js/modules/esnext.set.is-subset-of.js
  170. +2 −2 packages/core-js/modules/esnext.set.is-superset-of.js
  171. +2 −2 packages/core-js/modules/esnext.set.map.js
  172. +2 −2 packages/core-js/modules/esnext.set.reduce.js
  173. +3 −3 packages/core-js/modules/esnext.set.symmetric-difference.js
  174. +2 −2 packages/core-js/modules/esnext.set.union.js
  175. +1 −1 packages/core-js/modules/esnext.string.match-all.js
  176. +1 −1 packages/core-js/modules/esnext.string.replace-all.js
  177. +19 −0 packages/core-js/modules/esnext.typed-array.from-async.js
  178. +2 −1 packages/core-js/modules/web.timers.js
  179. +6 −5 packages/core-js/modules/web.url-search-params.js
  180. +1 −1 packages/core-js/package.json
  181. +3 −0 packages/core-js/proposals/array-from-async.js
  182. +1 −0 packages/core-js/stage/1.js
  183. +0 −1 scripts/build-compat-data.mjs
  184. +0 −1 scripts/build-compat-entries.mjs
  185. +0 −1 scripts/build-compat-modules-by-versions.mjs
  186. +0 −1 scripts/bundle.mjs
  187. +0 −1 scripts/check-compat-data-mapping.mjs
  188. +22 −0 scripts/check-compat-data-modules-by-versions.mjs
  189. +0 −1 scripts/check-dependencies.mjs
  190. +0 −1 scripts/check-unused-modules.mjs
  191. +0 −2 scripts/clean-and-copy.mjs
  192. +0 −1 scripts/clean-dependencies.mjs
  193. +0 −1 scripts/downloads-by-versions.mjs
  194. +1 −1 scripts/generate-indexes.mjs
  195. +0 −1 scripts/update-version.mjs
  196. +0 −1 scripts/usage.mjs
  197. +0 −1 tests/commonjs-entries-content.mjs
  198. +4 −1 tests/commonjs.mjs
  199. +30 −8 tests/compat/tests.js
  200. +24 −0 tests/helpers/helpers.js
  201. +7 −0 tests/pure/es.array.splice.js
  202. +1 −0 tests/pure/es.number.parse-float.js
  203. +1 −0 tests/pure/es.number.parse-int.js
  204. +1 −0 tests/pure/es.parse-float.js
  205. +1 −0 tests/pure/es.parse-int.js
  206. +65 −0 tests/pure/esnext.array.from-async.js
  207. +0 −1 tests/targets-parser.mjs
  208. +7 −0 tests/tests/es.array.splice.js
  209. +1 −0 tests/tests/es.number.parse-float.js
  210. +1 −0 tests/tests/es.number.parse-int.js
  211. +1 −0 tests/tests/es.parse-float.js
  212. +1 −0 tests/tests/es.parse-int.js
  213. +66 −0 tests/tests/esnext.array.from-async.js
  214. +67 −0 tests/tests/esnext.typed-array.from-async.js
  215. +4 −0 tests/wpt-url-resources/setters.js
  216. +4 −0 tests/wpt-url-resources/toascii.js
  217. +4 −0 tests/wpt-url-resources/urltestdata.js
8 changes: 8 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -398,6 +398,8 @@ const base = {
'unicorn/no-console-spaces': ERROR,
// enforce the use of unicode escapes instead of hexadecimal escapes
'unicorn/no-hex-escape': ERROR,
// prevent calling `EventTarget#removeEventListener()` with the result of an expression
'unicorn/no-invalid-remove-event-listener': ERROR,
// disallow `if` statements as the only statement in `if` blocks without `else`
'unicorn/no-lonely-if': ERROR,
// forbid classes that only have static members
@@ -408,6 +410,8 @@ const base = {
'unicorn/no-unsafe-regex': ERROR,
// disallow unused object properties
'unicorn/no-unused-properties': ERROR,
// forbid useless fallback when spreading in object literals
'unicorn/no-useless-fallback-in-spread': ERROR,
// disallow useless array length check
'unicorn/no-useless-length-check': ERROR,
// disallow useless spread
@@ -1140,6 +1144,10 @@ module.exports = {
require: READONLY,
sleep: READONLY,
},
rules: {
// disallow use of console
'no-console': OFF,
},
},
{
files: ['*.json'],
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,18 @@
##### Unreleased
- Nothing

##### 3.18.0 - 2021.09.20
- Added [`Array.fromAsync` stage 1 proposal](https://github.com/tc39/proposal-array-from-async):
- `Array.fromAsync`
- `%TypedArray%.fromAsync`
- `.name` and `.toString()` on polyfilled functions improved in many different cases
- Improved internal `IsConstructor` and `IsCallable` checks
- Fixed some internal cases of `GetMethod` operation
- Fixed a bug of MS Edge 18- `parseInt` / `parseFloat` with boxed symbols
- Fixed `es.array.{ index-of, last-index-of }` compat data
- Added Deno 1.15 compat data mapping
- Some other minor fixes and optimizations

##### 3.17.3 - 2021.09.09
- Fixed some possible problems related to possible extension of `%IteratorPrototype%` and `%AsyncIteratorPrototype%` in the future
- Fixed `DOMTokenList.prototype.{ forEach, @@iterator, keys, values, entries }` in old WebKit versions where `element.classList` is not an instance of global `DOMTokenList`
36 changes: 29 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -109,6 +109,7 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
- [New collections methods](#new-collections-methods)
- [`.of` and `.from` methods on collection constructors](#of-and-from-methods-on-collection-constructors)
- [`compositeKey` and `compositeSymbol`](#compositekey-and-compositesymbol)
- [`Array.fromAsync`](#arrayfromasync)
- [`Array` filtering](#array-filtering)
- [`Array` grouping](#array-grouping)
- [`Array` deduplication](#array-deduplication)
@@ -139,14 +140,14 @@ Promise.resolve(32).then(x => console.log(x)); // => 32
### Installation:[](#index)
```
// global version
npm install --save core-js@3.17.3
npm install --save core-js@3.18.0
// version without global namespace pollution
npm install --save core-js-pure@3.17.3
npm install --save core-js-pure@3.18.0
// bundled global version
npm install --save core-js-bundle@3.17.3
npm install --save core-js-bundle@3.18.0
```

Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.17.3) ([minified version](https://unpkg.com/core-js-bundle@3.17.3/minified.js)).
Already bundled version of `core-js` [on CDN](https://unpkg.com/core-js-bundle@3.18.0) ([minified version](https://unpkg.com/core-js-bundle@3.18.0/minified.js)).

### `postinstall` message[](#index)
The `core-js` project needs your help, so the package shows a message about it after installation. If it causes problems for you, you can disable it:
@@ -236,9 +237,9 @@ import 'regenerator-runtime/runtime';

#### `@babel/preset-env`[](#index)

[`@babel/preset-env`](https://github.com/babel/babel/tree/master/packages/babel-preset-env) has `useBuiltIns` option, which optimizes working with global version of `core-js`. With `useBuiltIns` option, you should also set `corejs` option to used version of `core-js`, like `corejs: '3.17'`.
[`@babel/preset-env`](https://github.com/babel/babel/tree/master/packages/babel-preset-env) has `useBuiltIns` option, which optimizes working with global version of `core-js`. With `useBuiltIns` option, you should also set `corejs` option to used version of `core-js`, like `corejs: '3.18'`.

> **Warning!** Recommended to specify used minor `core-js` version, like `corejs: '3.17'`, instead of `corejs: 3`, since with `corejs: 3` will not be injected modules which were added in minor `core-js` releases.
> **Warning!** Recommended to specify used minor `core-js` version, like `corejs: '3.18'`, instead of `corejs: 3`, since with `corejs: 3` will not be injected modules which were added in minor `core-js` releases.
- `useBuiltIns: 'entry'` replaces imports of `core-js` to import only required for a target environment modules. So, for example,
```js
@@ -293,7 +294,7 @@ import 'core-js/modules/es.array.of';
var array = Array.of(1, 2, 3);
```

By default, `@babel/preset-env` with `useBuiltIns: 'usage'` option only polyfills stable features, but you can enable polyfilling of proposals by `proposals` option, as `corejs: { version: '3.17', proposals: true }`.
By default, `@babel/preset-env` with `useBuiltIns: 'usage'` option only polyfills stable features, but you can enable polyfilling of proposals by `proposals` option, as `corejs: { version: '3.18', proposals: true }`.

#### `@babel/runtime`[](#index)

@@ -2297,6 +2298,27 @@ console.log(compositeSymbol(1, a) === compositeSymbol(1, a)); // => true
console.log(compositeSymbol(1, a, 2, b) === compositeSymbol(1, a, 2, b)); // => true
console.log(compositeSymbol(a, a) === compositeSymbol(a, a)); // => true
```
##### [`Array.fromAsync`](https://github.com/tc39/proposal-array-from-async)[⬆](#index)
Modules [`esnext.array.from-async`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.array.from-async.js) and [`esnext.typed-array.from-async`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.typed-array.from-async.js)
```js
class Array {
static fromAsync(asyncItems: AsyncIterable | Iterable | ArrayLike, mapfn?: (value: any, index: number) => any, thisArg?: any): Array;
}

class %TypedArray% {
static fromAsync(asyncItems: AsyncIterable | Iterable | ArrayLike, mapfn?: (value: number, index: number, target) => number, thisArg?: any): %TypedArray%;
}
```
[*CommonJS entry points:*](#commonjs-api)
```js
core-js/proposals/array-from-async
core-js(-pure)/features/array/from-async
core-js/features/typed-array/from-async
```
[*Example*](https://goo.gl/Jt7SsD):
```js
await Array.fromAsync((async function * (){ yield * [1, 2, 3] })(), i => i * i); // => [1, 4, 9]
```
##### [Array filtering](https://github.com/tc39/proposal-array-filtering)[⬆](#index)
Modules [`esnext.array.filter-reject`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.array.filter-reject.js) and [`esnext.typed-array.filter-reject`](https://github.com/zloirock/core-js/blob/master/packages/core-js/modules/esnext.typed-array.filter-reject.js).
```js
2 changes: 1 addition & 1 deletion deno/corejs/README.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@

*Example*:
```js
import 'https://deno.land/x/corejs@v3.17.3/index.js'; // <- at the top of your entry point
import 'https://deno.land/x/corejs@v3.18.0/index.js'; // <- at the top of your entry point

Object.hasOwn({ foo: 42 }, 'foo'); // => true

Loading