UNPKG

@intlayer/core

Version:

Includes core Intlayer functions like translation, dictionary, and utility functions shared across multiple packages.

10 lines (9 loc) 1.04 kB
import { CachedIntl, bindIntl, getCachedIntl } from "./intl.mjs"; import { parseYaml } from "./parseYaml.mjs"; import { isValidElement } from "./isValidReactElement.mjs"; import { checkIsURLAbsolute } from "./checkIsURLAbsolute.mjs"; import { getCookie } from "./getCookie.mjs"; import { LocaleStorage, LocaleStorageClient, LocaleStorageServer, getLocaleFromStorage, getLocaleFromStorageClient, getLocaleFromStorageServer, localeStorageOptions, setLocaleInStorage, setLocaleInStorageClient, setLocaleInStorageServer } from "./localeStorage.mjs"; import { isSameKeyPath } from "./isSameKeyPath.mjs"; import { stringifyYaml } from "./stringifyYaml.mjs"; export { CachedIntl, CachedIntl as Intl, LocaleStorage, LocaleStorageClient, LocaleStorageServer, bindIntl, checkIsURLAbsolute, getCachedIntl, getCookie, getLocaleFromStorage, getLocaleFromStorageClient, getLocaleFromStorageServer, isSameKeyPath, isValidElement, localeStorageOptions, parseYaml, setLocaleInStorage, setLocaleInStorageClient, setLocaleInStorageServer, stringifyYaml };