mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-18 22:33:26 +08:00
6 lines
141 B
TypeScript
6 lines
141 B
TypeScript
import crypto from 'crypto';
|
|
|
|
export default function md5(date: string) {
|
|
return crypto.createHash('md5').update(date).digest('hex');
|
|
};
|