UNPKG

@ipp/cli

Version:

An image build orchestrator for the modern web

15 lines (14 loc) 489 B
"use strict"; /** * Image Processing Pipeline - Copyright (c) Marcus Cemes * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.passthrough = void 0; const object_stream_1 = require("../object_stream"); function passthrough() { return (source) => (0, object_stream_1.createObjectStream)(source); } exports.passthrough = passthrough;