MCPcopy Create free account
hub / github.com/cloudflare/computer / firstLine

Function firstLine

packages/computer/src/git/cli.ts:734–737  ·  view source on GitHub ↗
(s: string)

Source from the content-addressed store, hash-verified

732}
733
734function firstLine(s: string): string {
735 const i = s.indexOf("\n");
736 return i === -1 ? s : s.slice(0, i);
737}
738
739// ---------------------------------------------------------------
740// log

Callers 2

runCommitFunction · 0.85
formatLogOnelineFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected