UNPKG

315 BJavaScriptView Raw
1/**
2 * Get the decimal and thousand separator of a locale
3 * @param locale
4 * @returns {decimal: string, thousand: string}
5 */
6export function getSeparator(locale) {
7 return {
8 decimal: (0.1).toLocaleString(locale).substring(1, 2),
9 thousand: (1000).toLocaleString(locale).substring(1, 2)
10 };
11}