()
| 33 | }); |
| 34 | |
| 35 | async function makeTempDir(): Promise<string> { |
| 36 | const dir = await mkdtemp(join(tmpdir(), 'kimi-sdk-export-')); |
| 37 | tempDirs.push(dir); |
| 38 | return dir; |
| 39 | } |
| 40 | |
| 41 | function readZipEntries(buf: Buffer): Map<string, Buffer> { |
| 42 | let eocd = -1; |
no test coverage detected