PHP 8.2.30
Preview: isMatch.js Size: 1.86 KB
//opt/alt/alt-nodejs9/root/lib/node_modules/npm/node_modules/cli-table2/node_modules/lodash/lang/isMatch.js

var baseIsMatch = require('../internal/baseIsMatch'),
    bindCallback = require('../internal/bindCallback'),
    getMatchData = require('../internal/getMatchData');

/**
 * Performs a deep comparison between `object` and `source` to determine if
 * `object` contains equivalent property values. If `customizer` is provided
 * it's invoked to compare values. If `customizer` returns `undefined`
 * comparisons are handled by the method instead. The `customizer` is bound
 * to `thisArg` and invoked with three arguments: (value, other, index|key).
 *
 * **Note:** This method supports comparing properties of arrays, booleans,
 * `Date` objects, numbers, `Object` objects, regexes, and strings. Functions
 * and DOM nodes are **not** supported. Provide a customizer function to extend
 * support for comparing other values.
 *
 * @static
 * @memberOf _
 * @category Lang
 * @param {Object} object The object to inspect.
 * @param {Object} source The object of property values to match.
 * @param {Function} [customizer] The function to customize value comparisons.
 * @param {*} [thisArg] The `this` binding of `customizer`.
 * @returns {boolean} Returns `true` if `object` is a match, else `false`.
 * @example
 *
 * var object = { 'user': 'fred', 'age': 40 };
 *
 * _.isMatch(object, { 'age': 40 });
 * // => true
 *
 * _.isMatch(object, { 'age': 36 });
 * // => false
 *
 * // using a customizer callback
 * var object = { 'greeting': 'hello' };
 * var source = { 'greeting': 'hi' };
 *
 * _.isMatch(object, source, function(value, other) {
 *   return _.every([value, other], RegExp.prototype.test, /^h(?:i|ello)$/) || undefined;
 * });
 * // => true
 */
function isMatch(object, source, customizer, thisArg) {
  customizer = typeof customizer == 'function' ? bindCallback(customizer, thisArg, 3) : undefined;
  return baseIsMatch(object, getMatchData(source), customizer);
}

module.exports = isMatch;

Directory Contents

Dirs: 0 × Files: 30

Name Size Perms Modified Actions
2.24 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.75 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
39 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
464 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
493 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
963 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.13 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
901 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
851 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
572 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.20 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.92 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
955 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
811 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.03 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.86 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
825 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.26 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
365 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.03 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
732 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
2.17 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
830 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
889 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
2.44 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
400 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
458 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
487 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
697 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
726 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).