Comparing version 1.1.0 to 1.1.1
@@ -24,5 +24,4 @@ /* global Function */ | ||
}); | ||
for(var i in list){ | ||
if(!type(list[i],Function)) throw new TypeError(`${warn(moduleName)}: Each [Array] list item must be of [Function] type.`); | ||
for(let fun of list){ | ||
if(!type(fun,Function)) throw new TypeError(`${warn(moduleName)}: Each [Array] list item must be of [Function] type.`); | ||
} | ||
@@ -29,0 +28,0 @@ var bFinalThen = finalThen.bind(userContext,userContext,finalCatch); |
{ | ||
"name": "move-on", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "Creates a queue of sync or async functions with resolve and reject callback.", | ||
@@ -34,5 +34,5 @@ "main": "index.js", | ||
"cli-color": "^1.2.0", | ||
"of-type": "^2.1.0", | ||
"typeof-arguments": "^3.1.0" | ||
"of-type": "^2.1.3", | ||
"typeof-arguments": "^3.1.1" | ||
} | ||
} |
18938
Updatedof-type@^2.1.3
Updatedtypeof-arguments@^3.1.1