mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
8 lines
244 B
CoffeeScript
8 lines
244 B
CoffeeScript
Darkswarm.factory "Matcher", ->
|
|
# Match text fragment in an array of strings.
|
|
new class Matcher
|
|
match: (properties, text)->
|
|
properties.some (prop)->
|
|
prop ||= ""
|
|
prop.toLowerCase().indexOf(text.toLowerCase()) != -1
|