MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / isConsistentlyCrlf

Function isConsistentlyCrlf

sdk/src/tools/apply-patch.ts:463–467  ·  view source on GitHub ↗
(input: string)

Source from the content-addressed store, hash-verified

461}
462
463function isConsistentlyCrlf(input: string): boolean {
464 const hasCrlf = /\r\n/.test(input)
465 const hasBareLf = /(^|[^\r])\n/.test(input)
466 return hasCrlf && !hasBareLf
467}
468
469function preserveOriginalLineEndings(params: {
470 original: string

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected