This commit is contained in:
Mirco Wittrien 2020-02-05 11:29:52 +01:00
parent 808e94f462
commit 0af2a377b3
2 changed files with 2 additions and 2 deletions

View File

@ -1952,7 +1952,7 @@
if (i > 1000) result = null; if (i > 1000) result = null;
else { else {
if (typeof a !== typeof b) result = false; if (typeof a !== typeof b) result = false;
else if (typeof a === "function") result = JSON.stringify(a) == JSON.stringify(b); else if (typeof a === "function") result = a.toString() == b.toString();
else if (typeof a === "undefined") result = true; else if (typeof a === "undefined") result = true;
else if (typeof a === "symbol") result = true; else if (typeof a === "symbol") result = true;
else if (typeof a === "boolean") result = a == b; else if (typeof a === "boolean") result = a == b;

File diff suppressed because one or more lines are too long