source: frontend/node_modules/underscore/amd/lastIndexOf.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 308 bytes
Line 
1define(['./findLastIndex', './_createIndexFinder'], function (findLastIndex, _createIndexFinder) {
2
3 // Return the position of the last occurrence of an item in an array,
4 // or -1 if the item is not included in the array.
5 var lastIndexOf = _createIndexFinder(-1, findLastIndex);
6
7 return lastIndexOf;
8
9});
Note: See TracBrowser for help on using the repository browser.