UNPKG

ember-app-scheduler

Version:

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

14 lines (9 loc) 216 B
module.exports = toArray function toArray(list, index) { var array = [] index = index || 0 for (var i = index || 0; i < list.length; i++) { array[i - index] = list[i] } return array }