Nuxt/packages/utils/src/task.js

37 lines
924 B
JavaScript
Raw Normal View History

export const sequence = function sequence (tasks, fn) {
2018-12-22 21:05:13 +00:00
return tasks.reduce(
(promise, task) => promise.then(() => fn(task)),
Promise.resolve()
)
}
export const parallel = function parallel (tasks, fn) {
2018-12-22 21:05:13 +00:00
return Promise.all(tasks.map(fn))
}
export const chainFn = function chainFn (base, fn) {
2018-12-22 21:05:13 +00:00
if (typeof fn !== 'function') {
return base
}
return function (...args) {
2018-12-22 21:05:13 +00:00
if (typeof base !== 'function') {
return fn.apply(this, args)
2018-12-22 21:05:13 +00:00
}
let baseResult = base.apply(this, args)
2018-12-22 21:05:13 +00:00
// Allow function to mutate the first argument instead of returning the result
if (baseResult === undefined) {
[baseResult] = args
2018-12-22 21:05:13 +00:00
}
const fnResult = fn.call(
this,
baseResult,
...Array.prototype.slice.call(args, 1)
2018-12-22 21:05:13 +00:00
)
// Return mutated argument if no result was returned
if (fnResult === undefined) {
return baseResult
}
return fnResult
}
}