Node JS Format numéro 2 décimales avec virgule

function numberWithCommas(x) {
  return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',');
}
kripi__