(options: Intl.ListFormatOptions = {})
| 20 | * @param options - Formatting options. |
| 21 | */ |
| 22 | export function useListFormatter(options: Intl.ListFormatOptions = {}): Intl.ListFormat { |
| 23 | let {locale} = useLocale(); |
| 24 | return useMemo(() => new Intl.ListFormat(locale, options), [locale, options]); |
| 25 | } |
no test coverage detected