Number.implement({
  decimalFormat: function(decimals)
  {
    return this.round(decimals).toFixed(decimals);
  }
});
