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