freearhey / vue2-filters

A collection of Vue.js filters

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

filterBy object getter property

ChobitsSP opened this issue · comments

https://github.com/freearhey/vue2-filters/blob/dev/src/array/filterBy.js#L49

for (let key in val) {
  if (contains(val[key], search)) {
    return true
  }
}

@ChobitsSP could you further explain ?