1.9.01.8.3
Reading changes from the repo…
isMap
, isSet
, isWeakMap
, and isWeakSet
to enhance type checking capabilities. _.restParam
, providing an easy way to handle variable numbers of arguments in functions. _.isEqual
function for primitive types, improving performance for equality checks. _.sample
for better efficiency by exiting early when enough elements are found, especially for large arrays. _.debounce
function to handle immediate calls correctly, ensuring expected behavior in all scenarios. _.isNaN
to correctly handle wrapped numbers, ensuring it only returns true for actual NaN values. _.max
to exclude null values, ensuring it behaves correctly when called with multiple arrays. _.first
and _.last
to return undefined
when called on empty arrays, improving consistency in behavior.