MCPcopy Create free account
hub / github.com/DEROFDN/Engram / isASCII

Function isASCII

functions.go:4317–4324  ·  view source on GitHub ↗
(s string)

Source from the content-addressed store, hash-verified

4315}
4316
4317func isASCII(s string) bool {
4318 for _, c := range s {
4319 if c > unicode.MaxASCII {
4320 return false
4321 }
4322 }
4323 return true
4324}
4325
4326// Wrapper for serving TELA content toggling tela.updates if disabled, updated content should be checked for and presented to the user before calling serveTELAUpdates
4327func serveTELAUpdates(scid string) (link string, err error) {

Callers 3

layoutPadFunction · 0.85
layoutFileManagerFunction · 0.85
layoutContractBuilderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected