@schibsted/account-sdk-browser 5.0.1-beta.8 → 5.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -263,13 +263,7 @@ where it's difficult to do their own transpilation, we do provide some opt-in es
263
263
  But then regardless of whether you use the es5 versions or not, you might need to polyfill certain
264
264
  things that might be missing in the browsers you wish to support. A quick test using IE11 showed
265
265
  that we needed polyfills for `Promise`, `URL`, `Object.entries`, `fetch`, `Number.isFinite` and
266
- `Number.isInteger`. If you want any sort of debugging to work (say, if you're passing a function
267
- using `console.log` as a parameter to any SDK function that supports logging), you might also need
268
- to polyfill `console` and `console.log` (yeah, it's baffling, but a [known
269
- issue](https://stackoverflow.com/questions/22315167/in-ie11-how-to-use-console-log) in IE). We added
270
- them from polyfill.io like this:
271
-
272
- <script src="https://cdn.polyfill.io/v2/polyfill.js?features=Promise,URL,Object.entries,fetch,Number.isFinite,Number.isInteger,console,console.log"></script>
266
+ `Number.isInteger`.
273
267
 
274
268
  #### Cookies
275
269