// @flow export function formatNumberWithCommas(num: number): string { return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ','); }