export default function _withoutIndex(iteratee) { return function (value, index, callback) { return iteratee(value, callback); }; }