source: frontend/node_modules/underscore/amd/findWhere.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 291 bytes
Line 
1define(['./find', './matcher'], function (find, matcher) {
2
3 // Convenience version of a common use case of `_.find`: getting the first
4 // object containing specific `key:value` pairs.
5 function findWhere(obj, attrs) {
6 return find(obj, matcher(attrs));
7 }
8
9 return findWhere;
10
11});
Note: See TracBrowser for help on using the repository browser.