default: {
icompare: {};
match: (source: string, pattern: string) => null | string[];
matches: (source: string, pattern: string) => boolean;
remap: (
source: string,
pattern: string,
replacement: string,
) => null | string;
replace: (placeholder: string, captures: string[]) => string;
} = ...
Type Declaration
icompare: {}
match: (source: string, pattern: string) => null | string[]
matches: (source: string, pattern: string) => boolean
remap: (source: string, pattern: string, replacement: string) => null | string
replace: (placeholder: string, captures: string[]) => string