source: frontend/node_modules/underscore/modules/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: 280 bytes
Line 
1import findLastIndex from './findLastIndex.js';
2import createIndexFinder from './_createIndexFinder.js';
3
4// Return the position of the last occurrence of an item in an array,
5// or -1 if the item is not included in the array.
6export default createIndexFinder(-1, findLastIndex);
Note: See TracBrowser for help on using the repository browser.