UNPKG

@directus/api

Version:

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

6 lines (5 loc) 214 B
/** * Returns randomized value between 0 and 1.8e+6 (30min in ms) intended to be used as the randomized wait for * telemetry tracking */ export const getRandomWaitTime = () => Math.floor(Math.random() * 1.8e6);