Updated to Drupal 8.6.4, which is PHP 7.3 friendly. Also updated HTMLaw library....
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _isIterateeCall.js
1 var eq = require('./eq'),
2     isArrayLike = require('./isArrayLike'),
3     isIndex = require('./_isIndex'),
4     isObject = require('./isObject');
5
6 /**
7  * Checks if the given arguments are from an iteratee call.
8  *
9  * @private
10  * @param {*} value The potential iteratee value argument.
11  * @param {*} index The potential iteratee index or key argument.
12  * @param {*} object The potential iteratee object argument.
13  * @returns {boolean} Returns `true` if the arguments are from an iteratee call, else `false`.
14  */
15 function isIterateeCall(value, index, object) {
16   if (!isObject(object)) {
17     return false;
18   }
19   var type = typeof index;
20   if (type == 'number'
21       ? (isArrayLike(object) && isIndex(index, object.length))
22       : (type == 'string' && index in object)) {
23     return eq(object[index], value);
24   }
25   return false;
26 }
27
28 module.exports = isIterateeCall;