Your IP : 216.73.216.79


Current Path : /var/www/html/protegev2/node_modules/vue-router/src/util/
Upload File :
Current File : /var/www/html/protegev2/node_modules/vue-router/src/util/async.js

/* @flow */

export function runQueue (queue: Array<?NavigationGuard>, fn: Function, cb: Function) {
  const step = index => {
    if (index >= queue.length) {
      cb()
    } else {
      if (queue[index]) {
        fn(queue[index], () => {
          step(index + 1)
        })
      } else {
        step(index + 1)
      }
    }
  }
  step(0)
}