(str)
| 107 | |
| 108 | |
| 109 | MD5_Encrypt(str) { |
| 110 | const crypto = require("crypto") |
| 111 | return crypto.createHash('md5').update(str).digest('hex'); |
| 112 | } |
| 113 | async getUserInfo() { |
| 114 | try { |
| 115 | const timestamp = new Date().getTime(); |
no outgoing calls
no test coverage detected