···11import type { AppBskyRichtextFacet } from '@atcute/bluesky';
22+23import { bench, run } from 'mitata';
3445import { segmentize } from './index.ts';
···256256 // prevent issuers from minting very long-lived tokens: the configured max-age
257257 // window bounds how far `exp` can be in the future and how far `iat` can be in
258258 // the past.
259259- if (
260260- payload.exp - now > this.maxAge ||
261261- (payload.iat !== undefined && now - payload.iat > this.maxAge)
262262- ) {
259259+ if (payload.exp - now > this.maxAge || (payload.iat !== undefined && now - payload.iat > this.maxAge)) {
263260 return {
264261 ok: false,
265262 error: {