mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-07 22:46:06 +00:00
8 lines
141 B
Ruby
8 lines
141 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SpreeCurrencyHelper
|
|
def spree_number_to_currency(amount)
|
|
Spree::Money.new(amount).to_s
|
|
end
|
|
end
|