From 2e9b13307bd41936a44a155dec68c2a05a057b1f Mon Sep 17 00:00:00 2001 From: michal-oleniacz-stp <135205885+michal-oleniacz-stp@users.noreply.github.com> Date: Wed, 26 Jun 2024 14:45:53 +0200 Subject: [PATCH] docs: remove polyfill example (#285) --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index cb25e66..49133da 100644 --- a/README.md +++ b/README.md @@ -263,13 +263,7 @@ where it's difficult to do their own transpilation, we do provide some opt-in es But then regardless of whether you use the es5 versions or not, you might need to polyfill certain things that might be missing in the browsers you wish to support. A quick test using IE11 showed that we needed polyfills for `Promise`, `URL`, `Object.entries`, `fetch`, `Number.isFinite` and -`Number.isInteger`. If you want any sort of debugging to work (say, if you're passing a function -using `console.log` as a parameter to any SDK function that supports logging), you might also need -to polyfill `console` and `console.log` (yeah, it's baffling, but a [known -issue](https://stackoverflow.com/questions/22315167/in-ie11-how-to-use-console-log) in IE). We added -them from polyfill.io like this: - - +`Number.isInteger`. #### Cookies