mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
/**
|
|
* Null scanner that returns no dependencies
|
|
* Used when a command is not supported for scanning
|
|
*/
|
|
export function nullScanner() {
|
|
return {
|
|
shouldScan: () => false,
|
|
scan: () => [],
|
|
};
|
|
}
|