@punks/backend-entity-manager 0.0.384 → 0.0.385
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -22667,7 +22667,7 @@ const normalizeAddress = (value) => {
|
|
|
22667
22667
|
const normalizeAddressField = (values, invalidValues) => {
|
|
22668
22668
|
return backendCore.distinct(values
|
|
22669
22669
|
?.map(normalizeAddress)
|
|
22670
|
-
?.filter((value) => value && !invalidValues?.map(normalizeAddress).includes(value)));
|
|
22670
|
+
?.filter((value) => value && !invalidValues?.map(normalizeAddress).includes(value)) ?? []);
|
|
22671
22671
|
};
|
|
22672
22672
|
const normalizeAddresses = (input) => {
|
|
22673
22673
|
return {
|