mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-03 02:21:33 +00:00
6 lines
110 B
Ruby
6 lines
110 B
Ruby
module SpreeCurrencyHelper
|
|
def spree_number_to_currency(amount)
|
|
Spree::Money.new(amount).to_s
|
|
end
|
|
end
|