You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							16 lines
						
					
					
						
							424 B
						
					
					
				
			
		
		
	
	
							16 lines
						
					
					
						
							424 B
						
					
					
				| var keys = require('./keys.js');
 | |
| 
 | |
| // Returns whether an object has a given set of `key:value` pairs.
 | |
| function isMatch(object, attrs) {
 | |
|   var _keys = keys(attrs), length = _keys.length;
 | |
|   if (object == null) return !length;
 | |
|   var obj = Object(object);
 | |
|   for (var i = 0; i < length; i++) {
 | |
|     var key = _keys[i];
 | |
|     if (attrs[key] !== obj[key] || !(key in obj)) return false;
 | |
|   }
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| module.exports = isMatch;
 |