(s string)
| 4315 | } |
| 4316 | |
| 4317 | func 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 |
| 4327 | func serveTELAUpdates(scid string) (link string, err error) { |
no outgoing calls
no test coverage detected