UNPKG

@serwist/next

Version:

A module that integrates Serwist into your Next.js application.

5 lines (3 loc) 193 B
import crypto from "node:crypto"; import fs from "node:fs"; export const getFileHash = (file: fs.PathOrFileDescriptor) => crypto.createHash("md5").update(fs.readFileSync(file)).digest("hex");