Sha256: 2f8d56335ece86fb255d927a7e7e662e75befedb344e33eac881190896b1b942
Contents?: true
Size: 517 Bytes
Versions: 62
Compression:
Stored size: 517 Bytes
Contents
define(['../function/makeIterator_'], function (makeIterator) { /** * Returns the index of the last item that matches criteria */ function findLastIndex(arr, iterator, thisObj){ iterator = makeIterator(iterator, thisObj); if (arr == null) { return -1; } var n = arr.length; while (--n >= 0) { if (iterator(arr[n], n, arr)) { return n; } } return -1; } return findLastIndex; });
Version data entries
62 entries across 62 versions & 1 rubygems