Skip to main content
Glama
useCurrency.ts1.03 kB
'use client'; import { currency } from '@intlayer/core'; import { useCallback, useContext } from 'react'; import { IntlayerClientContext } from '../IntlayerProvider'; /** * React client hook that provides a currency formatter * bound to the current application locale. * * @returns {(value: string | number, options?: CurrencyProps) => string} * A function to format numbers into localized currency strings. * * @example * ```tsx * const formatCurrency = useCurrency(); * * formatCurrency(1500, { currency: "USD" }); * // "$1,500.00" * * formatCurrency(1500, { currency: "EUR", locale: "de-DE" }); * // "1.500,00 €" * * formatCurrency(9876543.21, { * currency: "JPY", * fractionDigits: 0, * }); * // "¥9,876,543" * ``` */ export const useCurrency = () => { const { locale } = useContext(IntlayerClientContext); return useCallback( (...args: Parameters<typeof currency>) => currency(args[0], { ...args[1], locale: args[1]?.locale ?? 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