This repository has been archived on 2025-07-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
eternos/frontend/node_modules/underscore/cjs/findWhere.js
2025-01-13 09:33:52 +03:00

11 lines
297 B
JavaScript

var matcher = require('./matcher.js');
var find = require('./find.js');
// Convenience version of a common use case of `_.find`: getting the first
// object containing specific `key:value` pairs.
function findWhere(obj, attrs) {
return find(obj, matcher(attrs));
}
module.exports = findWhere;