(name: string, contents: string)
| 479 | } |
| 480 | |
| 481 | export function buildBinaryFile(name: string, contents: string): File { |
| 482 | return buildReadableFile({ name, contents, type: 'application/octet-stream' }); |
| 483 | } |
| 484 | |
| 485 | export function buildReadableBinaryBlob({ |
| 486 | contents = new Uint8Array(), |