Skip to main content
Glama
useUnit.ts1 kB
import { units } from '@intlayer/core'; import type { LocalesValues } from '@intlayer/types'; import { IntlayerServerContext } from '../IntlayerServerProvider'; import { getServerContext } from '../serverContext'; /** * React hook that provides a unit formatting function * based on the current locale from {@link useLocaleBase}. * * This hook wraps {@link createUnit} to return a formatter * that can convert values into human-readable localized units * (e.g., "10 km", "5 lbs"). * * @example * ```tsx * const formatUnit = useUnit(); * const distance = formatUnit(10, { unit: "kilometer" }); * // "10 km" (depending on locale) * ``` * * @returns {Function} A unit formatting function that accepts a value and optional formatting options. */ export const useUnit = () => { const locale = getServerContext<LocalesValues>(IntlayerServerContext); return (...args: Parameters<typeof units>) => units(args[0], { ...args[1], locale: args[1]?.locale ?? locale, }); };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server