api: itunnel transplants (#1065)

This commit is contained in:
wukko
2025-01-21 00:10:49 +06:00
committed by GitHub
7 changed files with 115 additions and 16 deletions

View File

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