Sha256: 3c6162f14970fa8d0c0f94cad8f01419f200becacfd6399ba105cfaa733a0272

Contents?: true

Size: 958 Bytes

Versions: 23

Compression:

Stored size: 958 Bytes

Contents

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const stream_1 = require("stream");
const async_1 = require("../readers/async");
class StreamProvider {
    constructor(_root, _settings) {
        this._root = _root;
        this._settings = _settings;
        this._reader = new async_1.default(this._root, this._settings);
        this._stream = new stream_1.Readable({
            objectMode: true,
            read: () => { },
            destroy: this._reader.destroy.bind(this._reader)
        });
    }
    read() {
        this._reader.onError((error) => {
            this._stream.emit('error', error);
        });
        this._reader.onEntry((entry) => {
            this._stream.push(entry);
        });
        this._reader.onEnd(() => {
            this._stream.push(null);
        });
        this._reader.read();
        return this._stream;
    }
}
exports.default = StreamProvider;

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-5.0.7 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.6 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.5 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.4 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.3 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.2 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.1 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.3.5 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-5.0.0 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.3.4 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.3.3 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.3.2 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.3.1 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.3 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.2.3 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.2.2 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.2.1 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.2 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.1.9 node_modules/@nodelib/fs.walk/out/providers/stream.js
trusty-cms-4.1.8 node_modules/@nodelib/fs.walk/out/providers/stream.js