UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

13 lines (12 loc) 362 B
//#region src/utils/destroy-piped-stream.ts /** * Destroy the targetStream that is being piped into without destroying the sourceStream. * (╯°□°)╯︵ ┻━┻ */ function destroyPipedStream(targetStream, sourceStream) { sourceStream.unpipe(targetStream); targetStream.destroy(); sourceStream.resume(); } //#endregion export { destroyPipedStream };