UNPKG

seniorvu-sdk

Version:

JS wrapper SDK for the SeniorVu web API

6 lines (5 loc) 216 B
// Check if the expiration time is within a day export default function expiresSoon(expireAt) { if (typeof expireAt === 'undefined') return true; return (new Date(expireAt) - new Date()) < 1000 * 60 * 60 * 24; }