With the introduction of https://github.com/mkozjak/node-telnet-client/commit/ce2bb8e17483d2f93b70a5a0b61309d597f1943d by @kshetline it means that all data is stored in the pendingData property and is only removed when you use the nextData() interface which means that if you instead use the event-emitter interface, eg .on('data', ...) then pendingData will grow indefinitely
With the introduction of https://github.com/mkozjak/node-telnet-client/commit/ce2bb8e17483d2f93b70a5a0b61309d597f1943d by @kshetline it means that all data is stored in the
pendingData
property and is only removed when you use thenextData()
interface which means that if you instead use the event-emitter interface, eg.on('data', ...)
thenpendingData
will grow indefinitely