Readme

date-fns

date-fns is a much better alternative to moment. It's much smaller, simpler, and easier to use. Plus, it supports ESM - notice how I can just import add and formatRelative here! Use it for all your date needs.

1
2
3
4
export let datefnsExample = (async () => {
const { add, formatRelative } = await import("npm:date-fns");
return formatRelative(add(new Date(), { minutes: 10 }), new Date());
})();
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023