Skip to content

Instantly share code, notes, and snippets.

View andreialecu's full-sized avatar

Andrei Alecu andreialecu

View GitHub Profile
@andreialecu
andreialecu / use-number-formatter.tsx
Created May 15, 2024 08:32
use-number-formatter hook for react native
import {useCallback} from 'react';
import {millify} from '../millify';
import {useAppLanguage} from './use-app-language';
const cachedFormatters = new Map<string, Intl.NumberFormat>();
const cachedResults = new Map<Intl.NumberFormat, Map<number, string>>();
/**
* We cache Intl.NumberFormat instances because creating them is slow.