forked from FoundKeyGang/FoundKey
Refactor
This commit is contained in:
parent
d3fd0f810a
commit
2309680c38
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export function DateUTC(time: number[]): Date {
|
|||
}
|
||||
|
||||
export function isTimeSame(a: Date, b: Date): boolean {
|
||||
return (a.getTime() - b.getTime()) === 0;
|
||||
return a.getTime() === b.getTime();
|
||||
}
|
||||
|
||||
export function isTimeBefore(a: Date, b: Date): boolean {
|
||||
|
|
Loading…
Reference in a new issue