mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-14 23:47:48 +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
|