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

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

Fix frontend appearance

  • Property mode set to 100644
File size: 322 bytes
Line 
1var findLastIndex = require('./findLastIndex.js');
2var _createIndexFinder = require('./_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.
6var lastIndexOf = _createIndexFinder(-1, findLastIndex);
7
8module.exports = lastIndexOf;
Note: See TracBrowser for help on using the repository browser.