summaryrefslogtreecommitdiff
path: root/lib/internal/withoutIndex.js
blob: 4de0f31dbb9dd63399ab16f12cd25dba887c0e36 (plain)
1
2
3
export default function _withoutIndex(iteratee) {
    return (value, index, callback) => iteratee(value, callback);
}