Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « datetime « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 869ade45ebd36bc50eca03ab717a45cafe299e8e (plain)
1
2
3
4
5
6
7
// Keys for the memoized Intl dateTime formatters
export const DATE_WITH_TIME_FORMAT = 'DATE_WITH_TIME_FORMAT';
export const DATE_ONLY_FORMAT = 'DATE_ONLY_FORMAT';

export const DEFAULT_DATE_TIME_FORMAT = DATE_WITH_TIME_FORMAT;

export const DATE_TIME_FORMATS = [DATE_WITH_TIME_FORMAT, DATE_ONLY_FORMAT];