Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Dec 3, 2024
1 parent a56a829 commit 43622f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app-latest-build/vendor.js
Original file line number Diff line number Diff line change
Expand Up @@ -154238,7 +154238,7 @@ function ensureArray(obj) {
* @return {Boolean}
*/
function has(target, key) {
return nativeHasOwnProperty.call(target, key);
return !isNil(target) && nativeHasOwnProperty.call(target, key);
}

/**
Expand Down Expand Up @@ -154319,7 +154319,7 @@ function find(collection, matcher) {
* @param {Collection<T>} collection
* @param {Matcher<T>} matcher
*
* @return {number}
* @return {number | string | undefined}
*/
function findIndex(collection, matcher) {
const matchFn = toMatcher(matcher);
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/vendor.js.map

Large diffs are not rendered by default.

0 comments on commit 43622f7

Please sign in to comment.