mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-08-04 20:34:21 +01:00
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
// Copyright 2026 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { SECOND } from '../../../util/durations/constants.std.ts';
|
|
|
|
export function timeIsPast(now: number, timestamp: number): boolean {
|
|
return now >= timestamp - SECOND;
|
|
}
|