Skip to content

Commit

Permalink
refactor: remove the dependence of npm package 'js-md5'
Browse files Browse the repository at this point in the history
  • Loading branch information
EYHN committed May 6, 2018
1 parent cc2af33 commit 29a0a50
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
"crypto": "1.0.1",
"eslint": "4.19.1",
"form-data": "^2.3.2",
"js-md5": "^0.7.3",
"json-bigint": "0.2.3",
"koa": "2.5.0",
"koa-redis-cache": "3.0.0",
Expand Down
3 changes: 2 additions & 1 deletion routes/tucaoqq/post.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
const axios = require('axios');
const template = require('../../utils/template');
const config = require('../../config');
const md5 = require('js-md5');
const md5 = require('../../utils/md5');


module.exports = async (ctx) => {
const projectID = ctx.params.project;
Expand Down
5 changes: 5 additions & 0 deletions utils/md5.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const crypto = require('crypto');

module.exports = function md5(date) {
return crypto.createHash('md5').update(date).digest("hex");
}

0 comments on commit 29a0a50

Please sign in to comment.