MCPcopy Create free account
hub / github.com/imgproxy/imgproxy / Decoder

Struct Decoder

xmlparser/decoder.go:37–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35var encodingRE = regexp.MustCompile(`(?s)^(.*encoding=)("[^"]+?"|'[^']+?')(.*)$`)
36
37type Decoder struct {
38 r *bufio.Reader
39 buf *buffer
40 err error
41
42 line int
43}
44
45func NewDecoder(r io.Reader) *Decoder {
46 dec := Decoder{buf: newBuffer(), line: 1}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected