fonteva-design-guide
Version:
## Dev, Build and Test
95 lines (91 loc) • 1.19 kB
JavaScript
/**
* lists of countries that either fall under the MMDDYYYY format or the DDMMYYYY format
*/
// format for the US and other countries
const groupMMDDYYYY = [
'b',
'bm',
'gh',
'id',
'sg',
'us',
'za',
'hn',
'pr',
'sv',
'hr',
'jp',
'kz',
'kh',
'ko',
'kr',
'lt',
'pl',
'sv',
'se',
'pk',
'zh',
'cn',
'hk',
'tw'
]
// format for most European countries and other countries
const groupDDMMYYYY = [
'ae',
'bh',
'jo',
'kw',
'lb',
'sa',
'es',
'cz',
'dk',
'at',
'ch',
'de',
'lu',
'gr',
'au',
'ca',
'gb',
'ie',
'nz',
'ar',
'bo',
'cl',
'co',
'cr',
'ec',
'gt',
'mx',
'pe',
'py',
'uy',
've',
'ee',
'fi',
'fr',
'mc',
'am',
'is',
'it',
'iw',
'lv',
'my',
'nl',
'be',
'sr',
'no',
'pt',
'ao',
'br',
'ro',
'ru',
'sk',
'si',
'th',
'tr',
'vn',
'uk'
]
export {groupMMDDYYYY, groupDDMMYYYY}