Skip to content

Commit

Permalink
[0.5.7]
Browse files Browse the repository at this point in the history
  • Loading branch information
kslimani committed Oct 27, 2024
1 parent 6a2c19b commit 75633af
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions dist/ima-ad-player.js
Original file line number Diff line number Diff line change
Expand Up @@ -3346,10 +3346,10 @@ var SHARED = '__core-js_shared__';
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});

(store.versions || (store.versions = [])).push({
version: '3.38.0',
version: '3.38.1',
mode: IS_PURE ? 'pure' : 'global',
copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
license: 'https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE',
license: 'https://github.com/zloirock/core-js/blob/v3.38.1/LICENSE',
source: 'https://github.com/zloirock/core-js'
});

Expand Down Expand Up @@ -3951,7 +3951,7 @@ module.exports = defineIterator(Array, 'Array', function (iterated, kind) {
var target = state.target;
var index = state.index++;
if (!target || index >= target.length) {
state.target = undefined;
state.target = null;
return createIterResultObject(undefined, true);
}
switch (state.kind) {
Expand Down Expand Up @@ -4714,6 +4714,7 @@ if (DESCRIPTORS && isCallable(NativeSymbol) && (!('description' in SymbolPrototy
var SymbolWrapper = function Symbol() {
var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString(arguments[0]);
var result = isPrototypeOf(SymbolPrototype, this)
// eslint-disable-next-line sonar/inconsistent-function-call -- ok
? new NativeSymbol(description)
// in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
: description === undefined ? NativeSymbol() : NativeSymbol(description);
Expand Down
2 changes: 1 addition & 1 deletion dist/ima-ad-player.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ima-ad-player",
"version": "0.5.6",
"version": "0.5.7",
"description": "Yet another Google IMA video ad player.",
"main": "dist/ima-ad-player.js",
"scripts": {
Expand Down

0 comments on commit 75633af

Please sign in to comment.