vault backup: 2023-11-03 21:23:31
This commit is contained in:
parent
29e7be99f3
commit
55d950d010
12
api.ts
12
api.ts
@ -32,6 +32,18 @@ await client.connect();
|
|||||||
const query = await Deno.readTextFile("sql/get.pg.sql");
|
const query = await Deno.readTextFile("sql/get.pg.sql");
|
||||||
|
|
||||||
function apply_guidance(doc: any) {
|
function apply_guidance(doc: any) {
|
||||||
|
|
||||||
|
if (doc["hist"]["chan.mold.v0ds.vers"] && Array.isArray(doc["hist"]["chan.mold.v0ds.vers"])) {
|
||||||
|
// Loop through each element in the 'chan.mold.v0ds.vers' array
|
||||||
|
for (const element of doc["hist"]["chan.mold.v0ds.vers"]) {
|
||||||
|
// Process each element - 'element' is of type SeasonData
|
||||||
|
console.log(element); // Replace with actual processing logic
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Handle the case where 'chan.mold.v0ds.vers' is not an array or doesn't exist
|
||||||
|
console.error("'chan.mold.v0ds.vers' is not an array or does not exist in the document.");
|
||||||
|
}
|
||||||
|
|
||||||
return doc;
|
return doc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user