mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-05 22:26:07 +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
|