summaryrefslogtreecommitdiff
path: root/build/modules-es6/internal/withoutIndex.js
blob: 9983ef63bdcec4c6f568d7ec51b8030395eeaaff (plain)
1
2
3
4
5
6
7
'use strict';

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