xdbc 1.0.89 → 1.0.90
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/DBC/OR.ts +1 -1
package/package.json
CHANGED
package/src/DBC/OR.ts
CHANGED
|
@@ -26,7 +26,7 @@ export class OR extends DBC {
|
|
|
26
26
|
* @returns TRUE if at least one of the provided "conditions" is fulfilled, otherwise a {@link string } containing all "conditions" returned {@link string }s separated by " || ". */
|
|
27
27
|
public static checkAlgorithm(
|
|
28
28
|
conditions: Array<{
|
|
29
|
-
check: (toCheck: unknown | undefined | null) => boolean | string;
|
|
29
|
+
check: (toCheck: unknown | undefined | null | object) => boolean | string;
|
|
30
30
|
}>,
|
|
31
31
|
value: unknown | null | undefined,
|
|
32
32
|
): boolean | string {
|