[add] implement vulnerability checking and advisory fetching, enhance repo processing, and add utility functions

This commit is contained in:
2025-08-19 19:13:24 +01:00
parent 52d0c7b649
commit 2c30fce7c8
14 changed files with 700 additions and 15 deletions

View File

@@ -82,7 +82,9 @@ export class LibraryTypesRecorder {
return undefined;
} else if(type.isNull()){
return null;
} else if(type.isBigInt()){
} else if (type.isVoid()){
return undefined;
}else if(type.isBigInt()){
return simpleFaker.number.bigInt();
}else if (type.isString()) {