artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
_baseIndexOfWith.js
1 
11 function baseIndexOfWith(array, value, fromIndex, comparator) {
12  var index = fromIndex - 1,
13  length = array.length;
14 
15  while (++index < length) {
16  if (comparator(array[index], value)) {
17  return index;
18  }
19  }
20  return -1;
21 }
22 
23 module.exports = baseIndexOfWith;