Merge pull request #85 from EYHN/master

refactor: remove the dependence of npm package 'js-md5'
This commit is contained in:
DIYgod 2018-05-06 21:50:32 +08:00 committed by GitHub
commit 44b94e6587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -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",

View File

@ -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;

5
utils/md5.js Normal file
View File

@ -0,0 +1,5 @@
const crypto = require('crypto');
module.exports = function md5(date) {
return crypto.createHash('md5').update(date).digest("hex");
}