Skip to content

Instantly share code, notes, and snippets.

@tux86
Created January 9, 2021 14:09
Show Gist options
  • Save tux86/4f3d6079faae7e2ff5fb4a9fe5a06a62 to your computer and use it in GitHub Desktop.
Save tux86/4f3d6079faae7e2ff5fb4a9fe5a06a62 to your computer and use it in GitHub Desktop.
const generateUserName = (tenantId, email) => {
if (!tenantId || !email) {
return null;
}
return md5(
[
tenantId,
email
].join().trim().toLowerCase()
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment