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

1 2 3 4 5 6 7      18x 41x    
import Iterator from '../iterators/Iterator';
import SelectManyIterator from '../iterators/SelectManyIterator';
 
Array.prototype.selectMany = function selectMany(callback) {
  return new SelectManyIterator(this, callback);
};