Code coverage report for RxJS/dist/cjs/operators/extended/findIndex.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (1 / 1)      Lines: 100% (6 / 6)      Ignored: none     

All files » RxJS/dist/cjs/operators/extended/ » findIndex.js
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'];