CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/account/gravatar-url.ts
Views: 687
1
import md5 from "md5";
2
3
export default function gravatarUrl(email: string): string {
4
return `https://www.gravatar.com/avatar/${md5(
5
email.toLowerCase()
6
)}?d=identicon&s=30`;
7
}
8
9