Code Duplication    Length = 1-1 lines in 2 locations

node_modules/mocha/mocha.js 1 location

@@ 10605-10605 (lines=1) @@
10602
// This returns true if the highWaterMark has not been hit yet,
10603
// similar to how Writable.write() returns true if you should
10604
// write() some more.
10605
Readable.prototype.push = function (chunk, encoding) {
10606
  var state = this._readableState;
10607
  var skipChunkCheck;
10608

node_modules/readable-stream/lib/_stream_readable.js 1 location

@@ 228-228 (lines=1) @@
225
// This returns true if the highWaterMark has not been hit yet,
226
// similar to how Writable.write() returns true if you should
227
// write() some more.
228
Readable.prototype.push = function (chunk, encoding) {
229
  var state = this._readableState;
230
  var skipChunkCheck;
231