MCPcopy Create free account
hub / github.com/github/gh-aw / isLetter

Function isLetter

pkg/workflow/js.go:386–388  ·  view source on GitHub ↗

isLetter checks if a rune is a letter

(r rune)

Source from the content-addressed store, hash-verified

384
385// isLetter checks if a rune is a letter
386func isLetter(r rune) bool {
387 return (r >= 'a' && r <= 'z') || (r >= 'A' && r <= 'Z')
388}
389
390// isDigit checks if a rune is a digit
391func isDigit(r rune) bool {

Callers 2

extractWordBeforeFunction · 0.85
isAlphaFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected