dmd2588 / idb

0 stars 0 forks source link

Display json object values in search results - not json #102

Closed xuset closed 7 years ago

xuset commented 7 years ago

Convert an individual search result json object to a string representation:

Object.keys(result)
.map(k => result[k])
.filter(v => keywordArray.find(kw => v.indexOf(kw) !== -1) != null)
.join(' - ')
xuset commented 7 years ago

Closed in previous commits