You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current ls() method returns an EventEmitter to the caller. This object will emit events for every directory entry, as fast as possible. We should provide a proper Readable stream object, using the second generation streams pattern. This will be an object-mode stream from which the consumer may read() directory entries, using the same object format as those previously emitted by the "entry" event from ls().
The text was updated successfully, but these errors were encountered:
The current
ls()
method returns anEventEmitter
to the caller. This object will emit events for every directory entry, as fast as possible. We should provide a properReadable
stream object, using the second generation streams pattern. This will be an object-mode stream from which the consumer mayread()
directory entries, using the same object format as those previously emitted by the"entry"
event fromls()
.The text was updated successfully, but these errors were encountered: