Class: Integer

Inherits:
Object
  • Object
show all
Defined in:
lib/englishnepalidateconverter/extensions/integer.rb

Overview

Extension to Integer class to add Nepali number method

Constant Summary collapse

NEPALI_DIGITS =
{
  "0" => "",
  "1" => "",
  "2" => "",
  "3" => "",
  "4" => "",
  "5" => "",
  "6" => "",
  "7" => "",
  "8" => "",
  "9" => ""
}.freeze

Instance Method Summary collapse

Instance Method Details

#to_nepaliObject



18
19
20
# File 'lib/englishnepalidateconverter/extensions/integer.rb', line 18

def to_nepali
  to_s.chars.map { |c| NEPALI_DIGITS[c] || c }.join
end