We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043ae11 commit c7dc65fCopy full SHA for c7dc65f
assets/resources/scriptlets.js
@@ -506,7 +506,10 @@
506
let aborted = false;
507
const mustAbort = function(v) {
508
if ( aborted ) { return true; }
509
- aborted = v !== undefined && cValue !== undefined && typeof v !== typeof cValue;
+ aborted =
510
+ (v !== undefined && v !== null) &&
511
+ (cValue !== undefined && cValue !== null) &&
512
+ (typeof v !== typeof cValue);
513
return aborted;
514
};
515
const makeProxy = function(owner, chain) {
0 commit comments