@aws-amplify/core
Version:
Core category of aws-amplify
10 lines (8 loc) • 352 B
JavaScript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
function isTokenExpired({ expiresAt, clockDrift, tolerance = 5000, }) {
const currentTime = Date.now();
return currentTime + clockDrift + tolerance > expiresAt;
}
export { isTokenExpired };
//# sourceMappingURL=isTokenExpired.mjs.map