Minor code review

This commit is contained in:
Raymond Hill 2020-01-04 09:32:28 -05:00
parent 3da11a3512
commit 2cf79ef922
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
1 changed files with 1 additions and 1 deletions

View File

@ -2913,7 +2913,7 @@ FilterContainer.prototype.fromSelfie = function(path) {
return true;
}),
]).then(results =>
results.reduce((acc, v) => acc && v, true)
results.every(v => v === true)
);
};