Files
2026-06-10 12:38:42 -03:00

3 lines
190 B
JavaScript

import { isArrayBuffer } from "@smithy/core/serde";
export const isStreaming = (body) => body !== undefined && typeof body !== "string" && !ArrayBuffer.isView(body) && !isArrayBuffer(body);