Skip to content

Commit 81d06dd

Browse files
committed
mark atob as not supported in the actual NodeJS (again)
nodejs/node#42530
1 parent 06b4357 commit 81d06dd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
- Stabilized proposals are filtered out from the `core-js-compat` / `core-js-builder` / `core-js-bundle` output. That mean that if the output contains, for example, `es.object.has-own`, the legacy shortcut to it, `esnext.object.has-own`, will not be added.
44
- Fixed work of non-standard V8 `Error` features with wrapped `Error` constructors, [#1061](https://github.com/zloirock/core-js/issues/1061)
55
- `null` and `undefined` allowed as the second argument of `structuredClone`, [#1056](https://github.com/zloirock/core-js/issues/1056)
6+
- `atob` marked as not supported in the actual NodeJS (again) because of [the bug](https://github.com/nodejs/node/issues/42530)
67
- Added Electron 19.0 and updated 18.0 compat data mapping
78

89
##### 3.21.1 - 2022.02.17

packages/core-js-compat/src/data.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1901,7 +1901,8 @@ export const data = {
19011901
edge: '13',
19021902
firefox: '27',
19031903
// https://github.com/nodejs/node/issues/41450
1904-
node: '17.5', // '16.0',
1904+
// https://github.com/nodejs/node/issues/42530
1905+
// node: '17.5', '16.0',
19051906
opera: '10.5',
19061907
safari: '10.1',
19071908
},

0 commit comments

Comments
 (0)