Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
export const timestampInLastDay = async (timestamp) => {
const { isAfter, subDays } = await import("npm:date-fns");
console.log("timestampInLastDay timestamp", timestamp);
return isAfter(new Date(timestamp), subDays(Date.now(), 1));
};
October 23, 2023