/var/www/cobraambalaj/node_modules/@nodelib/fs.walk/out/providers
NameSizeModeActions
async.d.ts5130644editdlrm
async.d.ts.map5780644editdlrm
async.js9360644editdlrm
async.spec.d.ts520644editdlrm
async.spec.d.ts.map1270644editdlrm
async.spec.js17890644editdlrm
index.d.ts2060644editdlrm
index.d.ts.map2590644editdlrm
index.js3970644editdlrm
stream.d.ts4560644editdlrm
stream.d.ts.map4800644editdlrm
stream.js10550644editdlrm
stream.spec.d.ts530644editdlrm
stream.spec.d.ts.map1290644editdlrm
stream.spec.js26510644editdlrm
sync.d.ts3720644editdlrm
sync.d.ts.map4320644editdlrm
sync.js4210644editdlrm
sync.spec.d.ts510644editdlrm
sync.spec.d.ts.map1250644editdlrm
sync.spec.js10170644editdlrm
Edit: /var/www/cobraambalaj/node_modules/@nodelib/fs.walk/out/providers/stream.js (1055B)
"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: () => { if (!this._reader.isDestroyed) { this._reader.destroy(); } } }); } 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;