1
0
Fork 0
mirror of synced 2024-09-29 08:41:16 +13:00

PR comments.

This commit is contained in:
mike12345567 2024-03-19 14:50:38 +00:00
parent abdff7d8e6
commit 55b9b00771

View file

@ -31,8 +31,7 @@ const Runner = new Thread(ThreadType.QUERY, {
function validateQueryInputs(parameters: Record<string, string>) {
for (let entry of Object.entries(parameters)) {
const key = entry[0],
value = entry[1]
const [key, value] = entry
if (typeof value !== "string") {
continue
}