mirror of
https://github.com/flarum/framework.git
synced 2024-11-26 02:10:09 +08:00
ab6c03c0cc
- Use JSX for templates - Docblock/comment everything - Mostly passes ESLint (still some work to do) - Lots of renaming, refactoring, etc. CSS hasn't been updated yet.
15 lines
322 B
JavaScript
15 lines
322 B
JavaScript
/**
|
|
* The `formatNumber` utility localizes a number into a string with the
|
|
* appropriate punctuation.
|
|
*
|
|
* @example
|
|
* formatNumber(1234);
|
|
* // 1,234
|
|
*
|
|
* @param {Number} number
|
|
* @return {String}
|
|
*/
|
|
export default function formatNumber(number) {
|
|
return number.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
|
|
}
|