UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

9 lines (8 loc) 235 B
import jwt from 'jsonwebtoken'; export function getExpiresAtForToken(token) { const decoded = jwt.decode(token); if (decoded && typeof decoded === 'object' && decoded.exp) { return decoded.exp; } return null; }