MCPcopy Index your code
hub / github.com/tdewolff/minify / M

Struct M

minify.go:121–127  ·  view source on GitHub ↗

M holds a map of mimetype => function to allow recursive minifier calls of the minifier functions.

Source from the content-addressed store, hash-verified

119
120// M holds a map of mimetype => function to allow recursive minifier calls of the minifier functions.
121type 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.
130func New() *M {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected