mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 23:25:27 +00:00
12 lines
234 B
Go
12 lines
234 B
Go
|
|
package protocolstate
|
||
|
|
|
||
|
|
import "github.com/projectdiscovery/utils/memguardian"
|
||
|
|
|
||
|
|
func IsLowOnMemory() bool {
|
||
|
|
if memguardian.DefaultMemGuardian != nil && memguardian.DefaultMemGuardian.Warning.Load() {
|
||
|
|
return true
|
||
|
|
}
|
||
|
|
|
||
|
|
return false
|
||
|
|
}
|