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.
2 parents 44f0c50 + 592f1ab commit 56cf7a6Copy full SHA for 56cf7a6
src/common/PropertyExt.js
@@ -213,7 +213,7 @@
213
return this[__prop_ + id] !== undefined && this[__prop_ + id] !== this[id + "_default"]();
214
};
215
this[id + "_exists"] = function () {
216
- return this[__prop_ + id] !== undefined && this[id + "_default"]() !== undefined;
+ return this[__prop_ + id] !== undefined || this[id + "_default"]() !== undefined;
217
218
this[id + "_default"] = function (_) {
219
if (!arguments.length) return this[__default_ + id] !== undefined ? this[__default_ + id] : meta.defaultValue;
0 commit comments