| 1 2 3 4 5 6 7 8 9 10 11 12 | 1 1 1 1 6 1 | 'use strict';
exports.__esModule = true;
exports['default'] = findIndex;
var _findSupport = require('./find-support');
function findIndex(predicate, thisArg) {
return this.lift(new _findSupport.FindValueOperator(predicate, this, true, thisArg));
}
module.exports = exports['default']; |