fix: treat the 0 time as invalid too
This commit is contained in:
parent
242b37034e
commit
2443791d33
@ -14,7 +14,7 @@ const defaultOptions: Options = {
|
|||||||
|
|
||||||
function coerceDate(fp: string, d: any): Date {
|
function coerceDate(fp: string, d: any): Date {
|
||||||
const dt = new Date(d)
|
const dt = new Date(d)
|
||||||
const invalidDate = isNaN(dt.getTime())
|
const invalidDate = isNaN(dt.getTime()) || dt.getTime() === 0
|
||||||
if (invalidDate && d !== undefined) {
|
if (invalidDate && d !== undefined) {
|
||||||
console.log(
|
console.log(
|
||||||
chalk.yellow(
|
chalk.yellow(
|
||||||
|
Loading…
Reference in New Issue
Block a user