Ali Salesi
Ali Salesi
Done. but if i remember correctly, a few of the tests didn't pass by narrow margins which were normal sin tests but for some reason kernel sin was not as...
You can change languageData delimiters of numbro. ```javascript setDelimiters(" ", 4); console.log(numbro(123456).format({thousandSeparated: true})); // 12 3456 setDelimiters(",", 2); console.log(numbro(123456).format({thousandSeparated: true})); // 12,34,56 setDelimiters(); console.log(numbro(123456).format({thousandSeparated: true})); // 123,456 function setDelimiters(delimiter =...
You can change the symbols in languageData delimiters ```javascript setDelimiters(".", ","); console.log(numbro(1234567.89).format({thousandSeparated: true})) // 1.234.567,89 setDelimiters(); console.log(numbro(1234567.89).format({thousandSeparated: true})) // 1,234,567.89 function setDelimiters(delimiter = ",", decimal = ".") { numbro.languageData().delimiters.thousands =...