/** * Converts the given milliseconds to seconds. * @param ms - The milliseconds to convert. * @returns The converted seconds. */ export function convertMsToSeconds(ms: number): number { return ms / 1000; }