lib: strings: add 'mkMailAddress'

This commit is contained in:
Bruno BELANYI 2021-10-12 17:53:23 +02:00
parent 62adfd5055
commit 8bf601a6aa
1 changed files with 4 additions and 1 deletions

View File

@ -2,5 +2,8 @@
let
in
{
# FIXME
# Make an email address from the name and domain stems
#
# mkMailAddress :: String -> String -> String
mkMailAddress = name: domain: "${name}@${domain}";
}