api/stream: implement itunnel transplants

This commit is contained in:
jj
2025-01-20 15:55:26 +00:00
parent c07940bfa4
commit 600c769141
3 changed files with 83 additions and 4 deletions

View File

@@ -29,3 +29,7 @@ export function splitFilenameExtension(filename) {
return [ parts.join('.'), ext ]
}
}
export function zip(a, b) {
return a.map((value, i) => [ value, b[i] ]);
}