@howgood/utils
Global utilities for use in HowGood packages and applications
Usage
import { formatNumber } from '@howgood/utils'
import { Text } from '@howgood/design'
const MyComponent = ({ score }) => {
const formatted = formatNumber(score)
return <Text>{formatted}</Text>
}