Sha256: 78ce86cd7f9815f492bd652eb75456d1b5bef696e70b845df5d2747b3b5bf1ea

Contents?: true

Size: 710 Bytes

Versions: 299

Compression:

Stored size: 710 Bytes

Contents

var baseIsMatch = require('./_baseIsMatch'),
    getMatchData = require('./_getMatchData'),
    matchesStrictComparable = require('./_matchesStrictComparable');

/**
 * The base implementation of `_.matches` which doesn't clone `source`.
 *
 * @private
 * @param {Object} source The object of property values to match.
 * @returns {Function} Returns the new spec function.
 */
function baseMatches(source) {
  var matchData = getMatchData(source);
  if (matchData.length == 1 && matchData[0][2]) {
    return matchesStrictComparable(matchData[0][0], matchData[0][1]);
  }
  return function(object) {
    return object === source || baseIsMatch(object, source, matchData);
  };
}

module.exports = baseMatches;

Version data entries

299 entries across 276 versions & 32 rubygems

Version Path
disco_app-0.18.2 test/dummy/node_modules/lodash/_baseMatches.js
sumomo-0.8.15 data/sumomo/api_modules/node_modules/lodash/_baseMatches.js
trusty-cms-5.0.7 node_modules/lodash/_baseMatches.js
appmap-0.72.2 ./node_modules/lodash/_baseMatches.js
trusty-cms-5.0.6 node_modules/lodash/_baseMatches.js
appmap-0.72.1 ./node_modules/lodash/_baseMatches.js
appmap-0.72.0 ./node_modules/lodash/_baseMatches.js
trusty-cms-5.0.5 node_modules/lodash/_baseMatches.js
trusty-cms-5.0.4 node_modules/lodash/_baseMatches.js
appmap-0.71.0 ./node_modules/lodash/_baseMatches.js
disco_app-0.16.1 test/dummy/node_modules/lodash/_baseMatches.js
appmap-0.70.2 ./node_modules/lodash/_baseMatches.js
sumomo-0.8.14 data/sumomo/api_modules/node_modules/lodash/_baseMatches.js
appmap-0.70.1 ./node_modules/lodash/_baseMatches.js
appmap-0.70.0 ./node_modules/lodash/_baseMatches.js
appmap-0.69.0 ./node_modules/lodash/_baseMatches.js
sumomo-0.8.13 data/sumomo/api_modules/node_modules/lodash/_baseMatches.js
appmap-0.68.2 ./node_modules/lodash/_baseMatches.js
appmap-0.68.1 ./node_modules/lodash/_baseMatches.js
disco_app-0.15.2 test/dummy/node_modules/lodash/_baseMatches.js