Remove other usages of : any

This commit is contained in:
Alex Gleason
2024-11-22 10:28:26 -06:00
parent 4eb7ea2461
commit da82462fa2
3 changed files with 4 additions and 6 deletions

View File

@@ -38,7 +38,7 @@ function findInvalid(arr: string[], predicate = (v: string) => !/[a-f0-9]{64}/.t
return arr.find(predicate);
}
function die(code: number, ...args: any[]) {
function die(code: number, ...args: unknown[]) {
console.error(...args);
Deno.exit(code);
}