Convert the given number into a string, then add commas like a normal number would have.
import {addCommasToNumber} from '@augment-vir/common';addCommasToNumber(1000123.456);// output is `'1,000,123.456'` Copy
import {addCommasToNumber} from '@augment-vir/common';addCommasToNumber(1000123.456);// output is `'1,000,123.456'`
@augment-vir/common
Convert the given number into a string, then add commas like a normal number would have.