Home Reference Source Repository

lib/internal/withoutIndex.js

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