mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-02 22:53:44 +00: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
|