00001
00011 function strictLastIndexOf(array, value, fromIndex) {
00012 var index = fromIndex + 1;
00013 while (index--) {
00014 if (array[index] === value) {
00015 return index;
00016 }
00017 }
00018 return index;
00019 }
00020
00021 module.exports = strictLastIndexOf;