import ms, {} from'ms';
/**
* Safely parse human readable time format into milliseconds
*/exportfunctiongetMilliseconds(value, fallback) {
if ((typeof value !== 'string' && typeof value !== 'number') || value === '') {
return fallback;
}
returnms(String(value)) ?? fallback;
}