module FormatHelper
  def strip_non_numbers(value)
    return if value.nil?

    value.gsub(/[^0-9]/, '')
  end
end
