(src string)
| 367 | var quoteArrayReplacer = strings.NewReplacer(`\`, `\\`, `"`, `\"`) |
| 368 | |
| 369 | func quoteArrayElement(src string) string { |
| 370 | return `"` + quoteArrayReplacer.Replace(src) + `"` |
| 371 | } |
| 372 | |
| 373 | func isSpace(ch byte) bool { |
| 374 | // see array_isspace: |
no outgoing calls
no test coverage detected
searching dependent graphs…