chore(dependency): Upgrade lodash from v2 to v3

This commit is contained in:
Blade Barringer
2015-12-26 08:18:58 -06:00
parent 33714b4947
commit b3050e5a67
15 changed files with 31 additions and 31 deletions

View File

@@ -9,7 +9,7 @@ function beastMasterProgress (pets) {
_(DROP_ANIMALS).each((animal) => {
if (pets[animal] > 0 || pets[animal] === -1)
count++;
});
}).value();
return count;
}
@@ -20,7 +20,7 @@ function dropPetsCurrentlyOwned (pets) {
_(DROP_ANIMALS).each((animal) => {
if (pets[animal] > 0)
count++;
});
}).value();
return count;
}
@@ -31,7 +31,7 @@ function mountMasterProgress (mounts) {
_(DROP_ANIMALS).each((animal) => {
if (mounts[animal])
count++;
});
}).value();
return count;
}