Sha256: 86683ee310ee3550812033e2622392f6b20ce2ec66df48f30e466f5ddcac1b44

Contents?: true

Size: 221 Bytes

Versions: 3

Compression:

Stored size: 221 Bytes

Contents

# frozen_string_literal: true

module EmailTypo
  KnownDotCom = lambda do |email|
    email
      .gsub(
        /@(aol|googlemail|gmail|hotmail|yahoo|icloud|outlook)\.(co|net|org)$/,
        "@\\1.com"
      )
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
email_typo-0.2.3 lib/email_typo/known_dot_com.rb
email_typo-0.2.2 lib/email_typo/known_dot_com.rb
email_typo-0.2.1 lib/email_typo/known_dot_com.rb