plattyp/sms_auth

View on GitHub
app/utils/phone_number_utils.rb

Summary

Maintainability
A
0 mins
Test Coverage
class PhoneNumberUtils
  def self.cleanup_phone_number(phone_num)
    !phone_num.nil? ? phone_num.gsub(/\D/, '') : nil
  end
end