@aws-amplify/core
Version:
Core category of aws-amplify
17 lines (14 loc) • 362 B
text/typescript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
export function isTokenExpired({
expiresAt,
clockDrift,
tolerance = 5000,
}: {
expiresAt: number;
clockDrift: number;
tolerance?: number;
}): boolean {
const currentTime = Date.now();
return currentTime + clockDrift + tolerance > expiresAt;
}