"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const crypto = require("crypto");
const md5 = (s) => crypto.createHash('md5').update(s).digest('hex');
const gravatar = (email) => `https://www.gravatar.com/avatar/${md5(email)}?s=128&d=mm`;
exports.default = gravatar;