1
2
3
export function msToIsoDate(unixMs) {
return new Date(unixMs).toISOString().split("T")[0];
}