@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 +1 -7
- package/es5/global.js +2948 -3089
- package/es5/global.js.map +1 -1
- package/es5/global.min.js +1 -1
- package/es5/global.min.js.map +1 -1
- package/es5/identity.js +2932 -3073
- package/es5/identity.js.map +1 -1
- package/es5/identity.min.js +1 -1
- package/es5/identity.min.js.map +1 -1
- package/es5/index.js +2955 -3096
- package/es5/index.js.map +1 -1
- package/es5/index.min.js +1 -1
- package/es5/index.min.js.map +1 -1
- package/es5/monetization.js +4 -1
- package/es5/monetization.js.map +1 -1
- package/es5/monetization.min.js +1 -1
- package/es5/monetization.min.js.map +1 -1
- package/package.json +1 -1
- package/src/cache.d.ts +3 -0
- package/src/cache.js +3 -0
- package/src/identity.d.ts +13 -10
- package/src/identity.js +75 -136
- package/src/version.js +1 -1
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`.
|
|
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
|
|