Skip to content

Instantly share code, notes, and snippets.

View juchiang77608's full-sized avatar
๐Ÿ™ƒ

Mien-Min Chiang juchiang77608

๐Ÿ™ƒ
View GitHub Profile
@basarat
basarat / md5.ts
Created November 2, 2017 00:43
Create md5 using TypeScript / JavaScript / NodeJS
import * as crypto from 'crypto';
export const md5 = (contents: string) => crypto.createHash('md5').update(contents).digest("hex");