UNPKG

@fontoxml/fontoxml-development-tools

Version:

Development tools for Fonto.

10 lines (8 loc) 227 B
import crypto from 'crypto'; /** * @param {string} content * @return {string} The hash of the content. */ export default function getFileHash(content) { return crypto.createHash('md5').update(content).digest('hex'); }