(marshal []byte)
| 561 | } |
| 562 | |
| 563 | func escapeDollarSign(marshal []byte) []byte { |
| 564 | dollar := []byte{'$'} |
| 565 | escDollar := []byte{'$', '$'} |
| 566 | return bytes.ReplaceAll(marshal, dollar, escDollar) |
| 567 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…