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