@ipp/cli
Version:
An image build orchestrator for the modern web
18 lines (17 loc) • 522 B
JavaScript
;
/**
* 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.toPromise = void 0;
function toPromise() {
return async function (source) {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
for await (const _ of source)
;
};
}
exports.toPromise = toPromise;