From a5dbb0ec1fb5bcaa52c8fa7db483a7020407001a Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Mon, 30 Oct 2023 14:08:41 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c467070..4f6fbae 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ import "core-js/stable/atob"; Some environments might not work well with polyfills and require you to import the pure function and expose it yourself instead (e.g. React Native): -``` +```js import atob from "core-js-pure/stable/atob"; global.atob = atob;