mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 20:15:27 +00:00
7 lines
233 B
Go
7 lines
233 B
Go
|
|
package extractors
|
||
|
|
|
||
|
|
// SupportsMap determines if the extractor type requires a map
|
||
|
|
func SupportsMap(extractor *Extractor) bool {
|
||
|
|
return extractor.Type.ExtractorType == KValExtractor || extractor.Type.ExtractorType == DSLExtractor
|
||
|
|
}
|