module Stall::Cmcic::Utils

Protected Instance Methods

price_with_currency(price) click to toggle source
# File lib/stall/cmcic/utils.rb, line 6
def price_with_currency(price)
  [
    price.format(symbol: '', separator: '.', delimiter: ''),
    currency
  ].join
end