pmcf 4.24.2 → 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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/utils.mjs +2 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "4.24.2",
3
+ "version": "4.24.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -50,7 +50,7 @@
50
50
  "lint:docs": "documentation lint ./src**/*.mjs"
51
51
  },
52
52
  "dependencies": {
53
- "aggregated-map": "^1.0.3",
53
+ "aggregated-map": "^1.0.4",
54
54
  "content-entry-transform": "^1.6.9",
55
55
  "ip-utilties": "^3.0.4",
56
56
  "npm-pkgbuild": "^20.6.4",
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 & attribute.configurable;
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) {