Skip to content

Instantly share code, notes, and snippets.

@luciaaldana
Last active February 15, 2023 10:36
Show Gist options
  • Save luciaaldana/47ce6c74d2535e2887e5f242ec1299ab to your computer and use it in GitHub Desktop.
Save luciaaldana/47ce6c74d2535e2887e5f242ec1299ab to your computer and use it in GitHub Desktop.
date-fns

DATE FNS

Extract date:

https://date-fns.org/v2.29.3/docs/lightFormat

import { parseISO, lightFormat } from 'date-fns';

const date = New Date(); 
// date => 2023-02-14T20:17:17.492

const result = lightFormat(parseISO(date), 'yyyy-MM-dd hh:mm:ss');
// result => 2023-02-14 08:17:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment