diff options
Diffstat (limited to 'tools/eslint/node_modules/lodash/isMatch.js')
-rw-r--r-- | tools/eslint/node_modules/lodash/isMatch.js | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/eslint/node_modules/lodash/isMatch.js b/tools/eslint/node_modules/lodash/isMatch.js index 32fc5fb501..9773a18cd7 100644 --- a/tools/eslint/node_modules/lodash/isMatch.js +++ b/tools/eslint/node_modules/lodash/isMatch.js @@ -5,8 +5,12 @@ var baseIsMatch = require('./_baseIsMatch'), * Performs a partial deep comparison between `object` and `source` to * determine if `object` contains equivalent property values. * - * **Note:** This method supports comparing the same values as `_.isEqual` - * and is equivalent to `_.matches` when `source` is partially applied. + * **Note:** This method is equivalent to `_.matches` when `source` is + * partially applied. + * + * Partial comparisons will match empty array and empty object `source` + * values against any array or object value, respectively. See `_.isEqual` + * for a list of supported value comparisons. * * @static * @memberOf _ |