UNPKG

198 BPlain TextView Raw
1/** `unixToIsoString` converts a time in Unix seconds to a UTC ISO timestamp */
2export function unixToIsoString({ time }: { time: number }): string {
3 return new Date(time * 1000).toISOString();
4}