mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 00:55:27 +00:00
9 lines
171 B
Go
9 lines
171 B
Go
|
|
package vardump
|
||
|
|
|
||
|
|
var (
|
||
|
|
// EnableVarDump enables var dump for debugging optionally
|
||
|
|
EnableVarDump bool
|
||
|
|
// Limit is the maximum characters to be dumped
|
||
|
|
Limit int = 255
|
||
|
|
)
|