diff --git a/flow.js b/flow.js index 7e7ae8961..c797a7247 100644 --- a/flow.js +++ b/flow.js @@ -21,7 +21,7 @@ * // => 9 */ function flow(...funcs) { - const length = funcs ? funcs.length : 0 + const length = funcs.length let index = length while (index--) { if (typeof funcs[index] !== 'function') {