Minifier is an XML minifier.
| 19 | |
| 20 | // Minifier is an XML minifier. |
| 21 | type Minifier struct { |
| 22 | KeepWhitespace bool |
| 23 | } |
| 24 | |
| 25 | // Minify minifies XML data, it reads from r and writes to w. |
| 26 | func Minify(m *minify.M, w io.Writer, r io.Reader, params map[string]string) error { |
nothing calls this directly
no outgoing calls
no test coverage detected