6 lines
87 B
Ruby
6 lines
87 B
Ruby
|
module Carto::EmailCleaner
|
||
|
def clean_email(email)
|
||
|
email.strip.downcase
|
||
|
end
|
||
|
end
|