graphql-upload
Version:
Middleware and a scalar Upload to add support for GraphQL multipart requests (file uploads via queries and mutations) to various Node.js GraphQL servers.
16 lines (12 loc) • 351 B
JavaScript
// @ts-check
/** @import { Readable } from "node:stream" */
/**
* Safely ignores a Node.js readable stream.
* @param {Readable} stream Node.js readable stream.
*/
export default function ignoreStream(stream) {
// Prevent an unhandled error from crashing the process.
stream.on("error", () => {});
// Waste the stream.
stream.resume();
}