UNPKG

rsshub

Version:
6 lines (4 loc) 145 B
import crypto from 'node:crypto'; export default function md5(date: string) { return crypto.createHash('md5').update(date).digest('hex'); }