Skip to content

Instantly share code, notes, and snippets.

View NitnekB's full-sized avatar
🚀

Quentin Buirette NitnekB

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