summaryrefslogtreecommitdiff
path: root/build/es/internal/withoutIndex.js
blob: f163ff36f7da6b7b417f050811391e73ddd545aa (plain)
1
2
3
4
5
6
7
'use strict';

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