Minor formatting nit. [ci skip]

This commit is contained in:
John-David Dalton
2016-10-09 22:40:40 -07:00
parent 6a8e978fd7
commit 729f424622

View File

@@ -12032,8 +12032,8 @@
return true;
}
var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;
return (typeof Ctor == 'function' &&
Ctor instanceof Ctor && funcToString.call(Ctor) == objectCtorString);
return typeof Ctor == 'function' && Ctor instanceof Ctor &&
funcToString.call(Ctor) == objectCtorString;
}
/**