UNPKG

@directus/api

Version:

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

11 lines (10 loc) 304 B
import ms, {} from 'ms'; /** * Safely parse human readable time format into milliseconds */ export function getMilliseconds(value, fallback) { if ((typeof value !== 'string' && typeof value !== 'number') || value === '') { return fallback; } return ms(String(value)) ?? fallback; }