rsshub / lib /utils /md5.ts
asemxin
Initial commit for HF Spaces
bf48b89
import crypto from 'node:crypto';
export default function md5(date: string) {
return crypto.createHash('md5').update(date).digest('hex');
}