Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/conformsTo.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

32 lines (30 sloc)
954 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var baseConformsTo = require('./_baseConformsTo'), | |
keys = require('./keys'); | |
/** | |
* Checks if `object` conforms to `source` by invoking the predicate | |
* properties of `source` with the corresponding property values of `object`. | |
* | |
* **Note:** This method is equivalent to `_.conforms` when `source` is | |
* partially applied. | |
* | |
* @static | |
* @memberOf _ | |
* @since 4.14.0 | |
* @category Lang | |
* @param {Object} object The object to inspect. | |
* @param {Object} source The object of property predicates to conform to. | |
* @returns {boolean} Returns `true` if `object` conforms, else `false`. | |
* @example | |
* | |
* var object = { 'a': 1, 'b': 2 }; | |
* | |
* _.conformsTo(object, { 'b': function(n) { return n > 1; } }); | |
* // => true | |
* | |
* _.conformsTo(object, { 'b': function(n) { return n > 2; } }); | |
* // => false | |
*/ | |
function conformsTo(object, source) { | |
return source == null || baseConformsTo(object, source, keys(source)); | |
} | |
module.exports = conformsTo; |