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

1 2 3 4 5 6    19x 5x    
import Iterator from '../iterators/Iterator';
 
Array.prototype.all = function all(condition) {
  return new Iterator(this).all(condition);
};