(val)
| 291 | * @returns {boolean} True if value is a Stream, otherwise false |
| 292 | */ |
| 293 | const isStream = (val) => isObject(val) && isFunction(val.pipe); |
| 294 | |
| 295 | /** |
| 296 | * Determine if a value is a FormData |
nothing calls this directly
no test coverage detected