(
...locales: Partial<INumberLocale>[]
)
| 191 | } |
| 192 | |
| 193 | export const getLocale = ( |
| 194 | ...locales: Partial<INumberLocale>[] |
| 195 | ): INumberLocale => |
| 196 | R.mergeAll([D3_DEFAULT_LOCALE, ...locales]) as INumberLocale; |
| 197 | |
| 198 | export const getSpecifier = (specifier?: string) => |
| 199 | specifier === undefined ? DEFAULT_SPECIFIER : specifier; |
no outgoing calls
no test coverage detected
searching dependent graphs…