MCPcopy Index your code
hub / github.com/cli/cli / stripSpace

Function stripSpace

api/queries_projects_v2_test.go:350–359  ·  view source on GitHub ↗
(str string)

Source from the content-addressed store, hash-verified

348}
349
350func stripSpace(str string) string {
351 var b strings.Builder
352 b.Grow(len(str))
353 for _, ch := range str {
354 if !unicode.IsSpace(ch) {
355 b.WriteRune(ch)
356 }
357 }
358 return b.String()
359}

Callers 1

TestUpdateProjectV2ItemsFunction · 0.85

Calls 1

StringMethod · 0.45

Tested by

no test coverage detected