UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

14 lines (10 loc) 301 B
define(['./findLastIndex'], function (findLastIndex) { /** * Returns last item that matches criteria */ function findLast(arr, iterator, thisObj){ var idx = findLastIndex(arr, iterator, thisObj); return idx >= 0? arr[idx] : void(0); } return findLast; });