Class: HappyPhoneNumber::IsFormat
- Inherits:
-
BaseFormat
- Object
- BaseFormat
- HappyPhoneNumber::IsFormat
- Defined in:
- lib/happy_phone_number/is_format.rb
Overview
Format phone numbers from Iceland.
Instance Method Summary collapse
-
#format ⇒ Object
Format the phone number given convention for Iceland.
Methods inherited from BaseFormat
Constructor Details
This class inherits a constructor from HappyPhoneNumber::BaseFormat
Instance Method Details
#format ⇒ Object
Format the phone number given convention for Iceland.
Returns the String formatted phone number.
11 12 13 14 15 16 17 18 |
# File 'lib/happy_phone_number/is_format.rb', line 11 def format if @type == :national make_happy '34' else internationalize_with '354' make_happy '434' end end |