mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 15:56:24 +02:00
15 lines
448 B
JavaScript
15 lines
448 B
JavaScript
"use strict";
|
|
/*
|
|
* @adonisjs/drive
|
|
*
|
|
* (c) Harminder Virk <virk@adonisjs.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.pipelinePromise = void 0;
|
|
const util_1 = require("util");
|
|
const stream_1 = require("stream");
|
|
exports.pipelinePromise = (0, util_1.promisify)(stream_1.pipeline);
|