Minifier is a CSS minifier.
| 60 | |
| 61 | // Minifier is a CSS minifier. |
| 62 | type Minifier struct { |
| 63 | Precision int // number of significant digits |
| 64 | newPrecision int // precision for new numbers |
| 65 | Inline bool |
| 66 | Version int |
| 67 | } |
| 68 | |
| 69 | // Minify minifies CSS data, it reads from r and writes to w. |
| 70 | 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