Skip to content

Commit c56b97f

Browse files
committedJan 18, 2023
3.27.2
1 parent 52651a1 commit c56b97f

File tree

17 files changed

+1271
-1220
lines changed

17 files changed

+1271
-1220
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Changelog
22
##### Unreleased
3+
- Nothing
4+
5+
##### [3.27.2 - 2023.01.19](https://github.com/zloirock/core-js/releases/tag/v3.27.2)
36
- [`Set` methods proposal](https://github.com/tc39/proposal-set-methods) updates:
47
- Closing of iterators of `Set`-like objects on early exit, [proposal-set-methods/85](https://github.com/tc39/proposal-set-methods/pull/85)
58
- Some other minor internal changes

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2022 Denis Pushkarev
1+
Copyright (c) 2014-2023 Denis Pushkarev
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -203,11 +203,11 @@ structuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])
203203
### Installation:[](#index)
204204
```sh
205205
// global version
206-
npm install --save core-js@3.27.1
206+
npm install --save core-js@3.27.2
207207
// version without global namespace pollution
208-
npm install --save core-js-pure@3.27.1
208+
npm install --save core-js-pure@3.27.2
209209
// bundled global version
210-
npm install --save core-js-bundle@3.27.1
210+
npm install --save core-js-bundle@3.27.2
211211
```
212212

213213
Or you can use `core-js` [from CDN](https://www.jsdelivr.com/package/npm/core-js-bundle).

‎deno/corejs/LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2022 Denis Pushkarev
1+
Copyright (c) 2014-2023 Denis Pushkarev
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

‎deno/corejs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
*Example*:
3030
```js
31-
import 'https://deno.land/x/corejs@v3.27.1/index.js'; // <- at the top of your entry point
31+
import 'https://deno.land/x/corejs@v3.27.2/index.js'; // <- at the top of your entry point
3232

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

0 commit comments

Comments
 (0)
Please sign in to comment.