Skip to content

Instantly share code, notes, and snippets.

View leeon-studiodevhub's full-sized avatar

leeon-studiodevhub

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");