(value: any)
| 512 | typeof value.arrayBuffer === "function"; |
| 513 | |
| 514 | export const isFsReadStream = (value: any): value is Readable => value instanceof Readable; |
| 515 | |
| 516 | export const isUploadable = (value: any): value is Uploadable => { |
| 517 | return isFileLike(value) || isResponseLike(value) || isFsReadStream(value); |
no outgoing calls
no test coverage detected
searching dependent graphs…