Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/bower/bower
/ md5
Function
md5
packages/bower-registry-client/lib/util/md5.js:3–8 ·
view source on GitHub ↗
(contents)
Source
from the content-addressed store, hash-verified
1
var
crypto = require(
'crypto'
);
2
3
function
md5(contents) {
4
return
crypto
5
.createHash(
'md5'
)
6
.update(contents)
7
.digest(
'hex'
);
8
}
9
10
module.exports = md5;
Callers
7
Cache.js
File · 0.85
Client.js
File · 0.85
ResolveCache.js
File · 0.85
Project.js
File · 0.85
Resolver.js
File · 0.85
cacheFilesFactory
Function · 0.85
resolveCache.js
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected