UNPKG

react-intlayer

Version:

Easily internationalize i18n your React applications with type-safe multilingual content management.

30 lines (27 loc) 970 B
'use client'; Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); const require_runtime = require('../../_virtual/_rolldown/runtime.cjs'); const require_client_IntlayerProvider = require('../IntlayerProvider.cjs'); let react = require("react"); let _intlayer_core_formatters = require("@intlayer/core/formatters"); //#region src/client/format/useCompact.ts /** * React client hook that provides a compact number formatter * bound to the current application locale. * * @example * ```tsx * const formatCompact = useCompact(); * formatCompact(1500); // "1.5K" * ``` */ const useCompact = () => { const { locale } = (0, react.useContext)(require_client_IntlayerProvider.IntlayerClientContext) ?? {}; return (0, react.useCallback)((...args) => (0, _intlayer_core_formatters.compact)(args[0], { ...args[1], locale: args[1]?.locale ?? locale }), [locale]); }; //#endregion exports.useCompact = useCompact; //# sourceMappingURL=useCompact.cjs.map