mirror of
https://github.com/github/codeql-action.git
synced 2026-05-07 14:20:19 +00:00
6 lines
111 B
JavaScript
6 lines
111 B
JavaScript
var MD5 = require('md5.js')
|
|
|
|
module.exports = function (buffer) {
|
|
return new MD5().update(buffer).digest()
|
|
}
|