chore: prettier all ts code
This commit is contained in:
@@ -2,6 +2,7 @@ import { isNaN } from './number';
|
||||
|
||||
export function isDate(date: Date): boolean {
|
||||
return (
|
||||
Object.prototype.toString.call(date) === '[object Date]' && !isNaN(date.getTime())
|
||||
Object.prototype.toString.call(date) === '[object Date]' &&
|
||||
!isNaN(date.getTime())
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user