UNPKG

140 BJavaScriptView Raw
1//@flow
2export default (current: Function, pre: Function = _ => _) => async (
3 ...args: Array<any>
4) => await current(await pre(...args));