frontend/.pnpm-store/v3/files/6f/4016b0464a6b0db28d526c56e8bb7098b92d75a924028a317866e14fda5b73b2113208eb75591ab5e4c1f226085b604056ec971057ddb89c7fad1670cc945b

6 lines
225 B
Plaintext

import { operate } from '../util/lift';
import { createFind } from './find';
export function findIndex(predicate, thisArg) {
return operate(createFind(predicate, thisArg, 'index'));
}
//# sourceMappingURL=findIndex.js.map