8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @param {Array} array
|
||
|
|
* @param {Function} predicate
|
||
|
|
* @returns {number}
|
||
|
|
*/
|
||
|
|
module.exports = Function.prototype.call.bind(Array.prototype.findIndex);
|