Minifier is the interface for minifiers. The *M parameter is used for minifying embedded resources, such as JS within HTML.
| 43 | // Minifier is the interface for minifiers. |
| 44 | // The *M parameter is used for minifying embedded resources, such as JS within HTML. |
| 45 | type Minifier interface { |
| 46 | Minify(*M, io.Writer, io.Reader, map[string]string) error |
| 47 | } |
| 48 | |
| 49 | //////////////////////////////////////////////////////////////// |
| 50 |
no outgoing calls
no test coverage detected
searching dependent graphs…