mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 18:18:06 +08:00
6 lines
140 B
JavaScript
6 lines
140 B
JavaScript
const crypto = require('crypto');
|
|
|
|
module.exports = function md5(date) {
|
|
return crypto.createHash('md5').update(date).digest('hex');
|
|
};
|