UNPKG

s3-file-manager

Version:

A streamlined, high-level S3 client for Node.js with built-in retries and support for uploads, downloads, and file operations — works with any S3-compatible storage.

8 lines (7 loc) 249 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isStreamType = void 0; const isStreamType = (t) => { return t === "Blob" || t === "Readable" || t === "ReadableStream"; }; exports.isStreamType = isStreamType;