mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-23 15:19:38 +02:00
14 lines
213 B
Ruby
14 lines
213 B
Ruby
|
class String
|
||
|
def unit
|
||
|
CURRENCY_OPTIONS[self.to_sym][:unit]
|
||
|
end
|
||
|
|
||
|
def separator
|
||
|
CURRENCY_OPTIONS[self.to_sym][:separator]
|
||
|
end
|
||
|
|
||
|
def precision
|
||
|
CURRENCY_OPTIONS[self.to_sym][:precision]
|
||
|
end
|
||
|
end
|