mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
11 lines
231 B
CoffeeScript
11 lines
231 B
CoffeeScript
mimelib = require("mimelib")
|
|
|
|
|
|
module.exports = EmailHelper =
|
|
|
|
parseEmail: (email) ->
|
|
email = mimelib.parseAddresses(email or "")[0]?.address?.toLowerCase()
|
|
if !email? or email == ""
|
|
return null
|
|
else
|
|
return email
|