pmcf 4.24.3 → 4.24.4
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/utils.mjs +2 -3
package/package.json
CHANGED
package/src/utils.mjs
CHANGED
|
@@ -119,10 +119,9 @@ export function asIterator(value) {
|
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
export const filterConfigurable = (name, attribute) =>
|
|
122
|
-
!attribute.private
|
|
122
|
+
!attribute.private && attribute.configurable;
|
|
123
123
|
|
|
124
|
-
|
|
125
|
-
export function union(value, present= new Set()) {
|
|
124
|
+
export function union(value, present = new Set()) {
|
|
126
125
|
if (value instanceof Set) {
|
|
127
126
|
return present.union(value);
|
|
128
127
|
} else if (value instanceof Array) {
|