Skip to content

Commit 475a3ed

Browse files
committed
chore: npm run format
1 parent b59c547 commit 475a3ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/jwt_claims_set.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export function validateClaimsSet(
165165
}
166166

167167
if (maxTokenAge) {
168-
const age = now - (payload.iat as number);
168+
const age = now - (payload.iat as number)
169169
const max = typeof maxTokenAge === 'number' ? maxTokenAge : secs(maxTokenAge)
170170

171171
if (age - tolerance > max) {

0 commit comments

Comments
 (0)