Back

Version 1

4/27/2023
export function msToIsoDate(unixMs) {
return new Date(unixMs).toISOString().split("T")[0];
}
Updated: October 23, 2023