Files
openfoodnetwork/app/assets/javascripts/darkswarm/services/matcher.js.coffee
2014-10-06 22:59:06 +11:00

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