react-intlayer
Version:
Easily internationalize i18n your React applications with type-safe multilingual content management.
26 lines (24 loc) • 681 B
JavaScript
import { getServerContext } from "../serverContext.mjs";
import { IntlayerServerContext } from "../IntlayerServerProvider.mjs";
import { compact } from "@intlayer/core";
//#region src/server/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 = getServerContext(IntlayerServerContext);
return (...args) => compact(args[0], {
...args[1],
locale: args[1]?.locale ?? locale
});
};
//#endregion
export { useCompact };
//# sourceMappingURL=useCompact.mjs.map