@mll-lab/js-utils 2.15.2 → 2.15.3
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/index.common.js +20 -19
- package/dist/index.common.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.js +20 -19
- package/dist/index.js.map +1 -1
- package/dist/predicates.d.ts +8 -10
- package/dist/predicates.test.d.ts +3 -1
- package/dist/typeGuards.d.ts +2 -0
- package/dist/typeGuards.test.d.ts +1 -0
- package/package.json +1 -1
package/dist/predicates.d.ts
CHANGED
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
export declare type PredicateFn = (value: unknown) => boolean;
|
|
2
|
-
export declare
|
|
3
|
-
export declare function isAlphanumeric(value: unknown): value is string;
|
|
2
|
+
export declare const isAlphanumeric: PredicateFn;
|
|
4
3
|
/**
|
|
5
4
|
* BSNR (Betriebsstättennummer) ist eine eindeutige Zuordnung von Leistungen zu dem entsprechenden Ort der Leistungserbringung ermöglicht,
|
|
6
5
|
* für alle vertrags(zahn)ärztlichen Leistungserbringer gültig
|
|
7
6
|
* und klar abzugrenzen vom Institutskennzeichen (IK-Nummer) eines Krankenhauses.
|
|
8
7
|
*/
|
|
9
|
-
export declare
|
|
8
|
+
export declare const isBSNR: PredicateFn;
|
|
10
9
|
export declare const EMAIL_REGEX: RegExp;
|
|
11
|
-
export declare
|
|
12
|
-
export declare
|
|
13
|
-
export declare
|
|
14
|
-
export declare
|
|
15
|
-
export declare
|
|
16
|
-
export declare
|
|
17
|
-
export declare function isNotNullish<T>(value: T): value is Exclude<T, null | undefined>;
|
|
10
|
+
export declare const isEmail: PredicateFn;
|
|
11
|
+
export declare const isOnlyDigits: PredicateFn;
|
|
12
|
+
export declare const isURL: PredicateFn;
|
|
13
|
+
export declare const isWord: PredicateFn;
|
|
14
|
+
export declare const isLabId: PredicateFn;
|
|
15
|
+
export declare const isRackBarcode: PredicateFn;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|