Skip to content

Commit

Permalink
chore: fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickholzenkamp committed May 16, 2024
1 parent 2978b9a commit 962b41d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/core/src/utils/mask/types/mask-date.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 962b41d

Please sign in to comment.