Method: Phonelib::Phone#sanitized
- Defined in:
- lib/phonelib/phone.rb
#sanitized ⇒ String
method to get sanitized phone number (only numbers)
51 52 53 54 55 56 |
# File 'lib/phonelib/phone.rb', line 51 def sanitized @sanitized ||= vanity_converted(@original).gsub( Phonelib.strict_check ? cr('^\+') : cr('[^0-9]+'), '') end |