UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

13 lines (12 loc) 477 B
/** * Checks if the given arguments are from an iteratee call. * * @private * @param {*} value The potential iteratee value argument. * @param {*} index The potential iteratee index or key argument. * @param {*} object The potential iteratee object argument. * @returns {boolean} Returns `true` if the arguments are from an iteratee call, * else `false`. */ export function isIterateeCall(value: any, index: any, object: any): boolean; export default isIterateeCall;