lib: strings: add 'mkMailAddress'

This commit is contained in:
Bruno BELANYI 2021-10-12 17:53:23 +02:00
parent ce5a8a20b9
commit 97fa58c220
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}";
}