UNPKG

@apihawk/help-center-sdk

Version:

The ApiHawk Help Center SDK

10 lines (9 loc) 311 B
"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;