obtain default runtime locale
import { DEFAULT_LOCALE } from '@lykmapipo/common';
// => 'en'
Void
obtain list of allowed runtime locales
import { LOCALES } from '@lykmapipo/common';
// => ['en', ...]
Void
obtain default runtime timezone
import { DEFAULT_TIMEZONE } from '@lykmapipo/common';
// => 'Africa/Dar_es_Salaam'
Void
obtain list of allowed runtime timezones
import { TIMEZONES } from '@lykmapipo/common';
// => ['Africa/Dar_es_Salaam', ...]
Void
obtain default runtime date format
import { DEFAULT_DATE_FORMAT } from '@lykmapipo/common';
// => 'YYYY-MM-DD'
Void
obtain default runtime time format
import { DEFAULT_TIME_FORMAT } from '@lykmapipo/common';
// => 'HH:mm:ss'
Void
obtain default runtime datetime format
import { DEFAULT_DATETIME_FORMAT } from '@lykmapipo/common';
// => 'YYYY-MM-DD HH:mm:ss'
Void
obtain default continent name
import { DEFAULT_CONTINENT_NAME } from '@lykmapipo/common';
// => 'Africa'
Void
provide list of continent names
import { CONTINENT_NAMES } from '@lykmapipo/common';
// => ['Africa', ...]
Void
obtain default country name
import { DEFAULT_COUNTRY_NAME } from '@lykmapipo/common';
// => 'Tanzania'
Void
provide list of country names
import { COUNTRY_NAMES } from '@lykmapipo/common';
// => ['Tanzania', ...]
Void
obtain default country code
import { DEFAULT_COUNTRY_CODE } from '@lykmapipo/common';
// => 'TZ'
Void
provide list of country codes
import { COUNTRY_CODES } from '@lykmapipo/common';
// => ['TZ', ...]
Void
obtain default country calling code
import { DEFAULT_CALLING_CODE } from '@lykmapipo/common';
// => '255'
Void
provide list of country calling codes
import { CALLING_CODES } from '@lykmapipo/common';
// => ['255', ...]
Void
obtain default city name
import { DEFAULT_CITY_NAME } from '@lykmapipo/common';
// => 'Dar es Salaam'
Void
Documentation generated with doxdox.