Fuzz is a fuzz test.
(data []byte)
| 13 | |
| 14 | // Fuzz is a fuzz test. |
| 15 | func Fuzz(data []byte) int { |
| 16 | r := bytes.NewBuffer(data) |
| 17 | _ = js.Minify(minify.New(), io.Discard, r, nil) |
| 18 | return 1 |
| 19 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…