Skip to content

Commit 8c214e5

Browse files
style(): run prettier
1 parent fc8147f commit 8c214e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decorator/string/Matches.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const MATCHES = 'matches';
1111
export function matches(value: string, pattern: RegExp): boolean;
1212
export function matches(value: string, pattern: string, modifiers: string): boolean;
1313
export function matches(value: string, pattern: RegExp | string, modifiers?: string): boolean {
14-
return typeof value === 'string' && matchesValidator(value, (pattern as unknown) as any, modifiers);
14+
return typeof value === 'string' && matchesValidator(value, pattern as unknown as any, modifiers);
1515
}
1616

1717
/**

0 commit comments

Comments
 (0)