(num: number)
| 622 | } |
| 623 | |
| 624 | export function toDecimalSeparated(num: number): string { |
| 625 | return String(num).replace(/\B(?=(\d{3})+(?!\d))/g, ','); |
| 626 | } |
| 627 | |
| 628 | /** |
| 629 | * random digits and letters (entropy: 53bit) |
nothing calls this directly
no test coverage detected
searching dependent graphs…