Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/creationix/js-git
/ parseDec
Function
parseDec
lib/object-codec.js:259–265 ·
view source on GitHub ↗
(buffer, start, end)
Source
from the content-addressed store, hash-verified
257
}
258
259
function
parseDec(buffer, start, end) {
260
var
val = 0;
261
while
(start < end) {
262
val = val * 10 + buffer[start++] - 0x30;
263
}
264
return
val;
265
}
Callers
1
deframe
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected