Skip to content

Instantly share code, notes, and snippets.

@josemunozr
Created May 14, 2020 11:58
Show Gist options
  • Save josemunozr/fa4adcd781275ba04f0c11ff13754049 to your computer and use it in GitHub Desktop.
Save josemunozr/fa4adcd781275ba04f0c11ff13754049 to your computer and use it in GitHub Desktop.
gravatar.js
import md5 from 'md5';
const gravatar = (email) => {
const base = 'https://gravatar.com/avatar/';
const formattedEmail = email.trim().toLowerCase();
const hash = md5(formattedEmail, { encoding: 'binary' });
return `${base}${hash}`;
};
export default gravatar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment