This commit is contained in:
mkelcik
2023-12-09 16:12:58 +01:00
parent 51958d719e
commit ecd2776a50
5 changed files with 113 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
package internal
import "strings"
import (
"strings"
)
func parseCommaDelimited(data string) []string {
out := make([]string, 0, strings.Count(data, ",")+1)