MCPcopy Create free account
hub / github.com/bodgit/sevenzip / decompressor

Function decompressor

register.go:86–97  ·  view source on GitHub ↗
(method []byte)

Source from the content-addressed store, hash-verified

84}
85
86func decompressor(method []byte) Decompressor {
87 di, ok := decompressors.Load(string(method))
88 if !ok {
89 return nil
90 }
91
92 if d, ok := di.(Decompressor); ok {
93 return d
94 }
95
96 return nil
97}

Callers 1

coderReaderMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…