UNPKG

@atlaskit/datetime-picker

Version:

A date time picker allows the user to select an associated date and time.

6 lines 239 B
// oxlint-disable-next-line @atlassian/no-restricted-imports import { format } from 'date-fns'; import { convertTokens } from './parse-tokens'; export function getShortISOString(date) { return format(date, convertTokens('YYYY-MM-DD')); }