mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-02 21:57:17 +00:00
10 lines
172 B
Ruby
10 lines
172 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
module MoneyHelper
|
|
def with_currency(amount, options = {})
|
|
Spree::Money.new(amount, options).to_s
|
|
end
|
|
end
|
|
end
|