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

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