From 962b41d65866939de115f77fd26164decb44e64d Mon Sep 17 00:00:00 2001 From: Yannick Holzenkamp Date: Thu, 16 May 2024 14:31:59 +0200 Subject: [PATCH] chore: fix formatting --- packages/core/src/utils/mask/types/mask-date.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/core/src/utils/mask/types/mask-date.ts b/packages/core/src/utils/mask/types/mask-date.ts index 923a76ad2..3bf61dffe 100644 --- a/packages/core/src/utils/mask/types/mask-date.ts +++ b/packages/core/src/utils/mask/types/mask-date.ts @@ -90,7 +90,10 @@ export class DateMask extends AbstractMask { ]) } - override onParseValue(inputValue?: string, options: { allowInvalidValue: boolean } = { allowInvalidValue: false }): string { + override onParseValue( + inputValue?: string, + options: { allowInvalidValue: boolean } = { allowInvalidValue: false }, + ): string { if (inputValue) { const date = BalDate.fromAnyFormat(this.blocks.getRawValueWithoutMask(inputValue)) if (date.isValid) {