fix(Servers API): .contains -> .includes

This commit is contained in:
41666 2020-02-07 23:07:57 -05:00
parent 6e692826c0
commit e2d63dc156
No known key found for this signature in database
GPG key ID: BC51D07640DC10AF

View file

@ -146,5 +146,4 @@ module.exports = (R, $) => {
})
}
const arrayMatches = (a, b) =>
a.length === b.length && a.reduce((_, aValue) => b.contains(aValue), true)
const arrayMatches = (a, b) => a.length === b.length && a.reduce((_, aValue) => b.includes(aValue), true)