mattvanhorn/BJJLife

View on GitHub
app/helpers/exhibit_currency_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ExhibitCurrencyHelper

  def dollarize(cents)
    "$%.2f" % ((cents||0) / 100.0)
  end

end