MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / replaceByteInByteSequence

Function replaceByteInByteSequence

out/cli.cjs:4699–4706  ·  view source on GitHub ↗
(buf, from, to)

Source from the content-addressed store, hash-verified

4697 return list;
4698 }
4699 function replaceByteInByteSequence(buf, from, to) {
4700 let i3 = buf.indexOf(from);
4701 while (i3 >= 0) {
4702 buf[i3] = to;
4703 i3 = buf.indexOf(from, i3 + 1);
4704 }
4705 return buf;
4706 }
4707 module2.exports = {
4708 parseUrlencodedString,
4709 serializeUrlencoded

Callers 1

parseUrlencodedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…