M holds a map of mimetype => function to allow recursive minifier calls of the minifier functions.
| 119 | |
| 120 | // M holds a map of mimetype => function to allow recursive minifier calls of the minifier functions. |
| 121 | type M struct { |
| 122 | mutex sync.RWMutex |
| 123 | literal map[string]Minifier |
| 124 | pattern []patternMinifier |
| 125 | |
| 126 | URL *url.URL |
| 127 | } |
| 128 | |
| 129 | // New returns a new M. |
| 130 | func New() *M { |
nothing calls this directly
no outgoing calls
no test coverage detected