fnando/email_typo

View on GitHub
lib/email_typo/remove_mailto.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module EmailTypo
  RemoveMailTo = lambda do |email|
    email.delete_prefix("mailto:")
  end
end