UNPKG

krakentyio-exegesis-koa

Version:
13 lines 350 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = bufferToStream; const stream_1 = require("stream"); function bufferToStream(buf) { return new stream_1.Readable({ read() { this.push(buf); this.push(null); }, }); } //# sourceMappingURL=bufferToStream.js.map