UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

16 lines 943 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ export declare const startsWith: (str: string | undefined, startStr: string) => boolean | undefined; export declare const endsWith: (str: string | undefined, endStr: string) => boolean | undefined; export declare const initCapOnce: (str: string) => string; export declare const substringBefore: (str: string, chars: string) => string; export declare const substringAfter: (str: string, chars: string) => string; export declare const removeEmptyLines: (arr: string[] | string) => string[]; export declare const splitToLines: (expr: string) => string[]; export declare const hashKey: (str: string) => string; export declare const uuid: (seed?: string) => string; export declare const matches: (str: string, regex: string) => boolean; export declare const isNumeric: (n: any) => boolean | undefined; //# sourceMappingURL=stringFunctions.d.ts.map