mirror of
https://github.com/CorentinTh/it-tools.git
synced 2026-06-07 06:35:21 -04:00
refactor: throw an error object instead of string
This commit is contained in:
@@ -73,7 +73,7 @@ function onDateInputChanged(value: string) {
|
||||
const formatted: Date | string = toDate(value)
|
||||
|
||||
if (!isDate(formatted) || isNaN(formatted.getTime())) {
|
||||
throw 'invalid date'
|
||||
throw new Error('Invalid date')
|
||||
}
|
||||
|
||||
baseDate.value = formatted
|
||||
|
||||
Reference in New Issue
Block a user