Skip to content

Commit

Permalink
release: rebuild v5.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
plainheart committed Dec 10, 2024
1 parent 1c79191 commit 6eb0c73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dist/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
}
else {
for (var key in arr) {
if (arr.hasOwnProperty(key) && key !== protoKey) {
if (arr.hasOwnProperty(key)) {
cb.call(context, arr[key], key, arr);
}
}
Expand Down Expand Up @@ -436,11 +436,11 @@
return [];
}
if (Object.keys) {
return filter(Object.keys(obj), function (key) { return key !== protoKey; });
return Object.keys(obj);
}
var keyList = [];
for (var key in obj) {
if (obj.hasOwnProperty(key) && key !== protoKey) {
if (obj.hasOwnProperty(key)) {
keyList.push(key);
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/zrender.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zrender.min.js

Large diffs are not rendered by default.

0 comments on commit 6eb0c73

Please sign in to comment.