Documentation
¶
Index ¶
Constants ¶
View Source
const ( LevelDisabled = -1 LevelDefault = 0 LevelBestSpeed = 1 LevelBestCompression = 2 )
Compression levels
Variables ¶
View Source
var ConfigDefault = Config{ Next: nil, Level: LevelDefault, }
ConfigDefault is the default config
Functions ¶
Types ¶
type Config ¶
type Config struct {
// Next defines a function to skip this middleware when returned true.
//
// Optional. Default: nil
Next func(c *fiber.Ctx) bool
// CompressLevel determines the compression algoritm
//
// Optional. Default: LevelDefault
// LevelDisabled: -1
// LevelDefault: 0
// LevelBestSpeed: 1
// LevelBestCompression: 2
Level int
}
Config defines the config for middleware.
Click to show internal directories.
Click to hide internal directories.