(text)
| 70 | } |
| 71 | |
| 72 | function sha1(text) { |
| 73 | return crypto.createHash("sha1").update(String(text)).digest("hex"); |
| 74 | } |
| 75 | |
| 76 | function md5(text) { |
| 77 | return crypto.createHash("md5").update(String(text)).digest("hex"); |
no outgoing calls
no test coverage detected