@docusign/iam-sdk
Version:
Developer-friendly & type-safe Typescript SDK specifically catered to leverage *@docusign/iam-sdk* API.
18 lines • 649 B
JavaScript
;
/*
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.isReadableStream = isReadableStream;
function isReadableStream(val) {
if (typeof val !== "object" || val === null) {
return false;
}
// Check for the presence of methods specific to ReadableStream
const stream = val;
// ReadableStream has methods like getReader, cancel, and tee
return (typeof stream.getReader === "function" &&
typeof stream.cancel === "function" &&
typeof stream.tee === "function");
}
//# sourceMappingURL=streams.js.map