All files / src/take Array.prototype.take.js

1 2 3 4 5 6    18x 3x    
import TakeIterator from '../iterators/TakeIterator';
 
Array.prototype.take = function take(count) {
  return new TakeIterator(this, count);
};