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