mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
14 lines
263 B
Go
14 lines
263 B
Go
// Expose some internals for testing purposes
|
|
package lz4
|
|
|
|
// expose the possible block max sizes
|
|
var BlockMaxSizeItems []int
|
|
|
|
func init() {
|
|
for s := range bsMapValue {
|
|
BlockMaxSizeItems = append(BlockMaxSizeItems, s)
|
|
}
|
|
}
|
|
|
|
var FrameSkipMagic = frameSkipMagic
|