UNPKG

veloze

Version:

A modern and fast express-like webserver for the web

7 lines (6 loc) 278 B
/** * @param {number|string|undefined} value * @param {boolean} [inSeconds] if `true` convert `value` to seconds; Only valid if value is string * @returns {number|undefined} */ export function ms(value: number | string | undefined, inSeconds?: boolean): number | undefined;