pmcf 4.6.1 → 4.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/base.mjs +3 -2
package/package.json
CHANGED
package/src/base.mjs
CHANGED
|
@@ -369,8 +369,9 @@ export class Base {
|
|
|
369
369
|
if (value !== undefined) {
|
|
370
370
|
yield value;
|
|
371
371
|
} else {
|
|
372
|
-
|
|
373
|
-
|
|
372
|
+
const value = this._properties?.[propertyName];
|
|
373
|
+
if (value !== undefined) {
|
|
374
|
+
yield value;
|
|
374
375
|
}
|
|
375
376
|
}
|
|
376
377
|
|