MCPcopy Create free account
hub / github.com/alibaba/open-code-review / isASCIILetter

Function isASCIILetter

internal/diff/git.go:489–491  ·  view source on GitHub ↗
(b byte)

Source from the content-addressed store, hash-verified

487}
488
489func isASCIILetter(b byte) bool {
490 return (b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z')
491}
492
493// resolveCommit returns the immutable commit SHA a ref points at, or "" when the
494// ref does not resolve to a commit (e.g. an unborn HEAD, or a bad ref). The

Callers 1

isLocalRemoteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected