Mythmon has better style than me.

This commit is contained in:
Michael Kelly 2016-03-02 13:43:06 -08:00
Родитель 991ca0837c
Коммит 9003fa8dd2
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -154,10 +154,7 @@ fetchRecipes().then((recipes) => {
let chain = Promise.resolve();
for (let recipe of recipes) {
let cb = function(recipeToRun) {
return runRecipe(recipeToRun);
};
chain.then(cb.bind(null, recipe));
chain.then(runRecipe.bind(null, recipe));
}
return chain;