From 19c9251b3631d7cf220b43bc757eb33f1084f117 Mon Sep 17 00:00:00 2001 From: Jon Church Date: Thu, 18 Dec 2025 17:52:05 -0500 Subject: [PATCH] fix: setCacheHas JSDoc return type should be boolean (#6071) --- dist/lodash.js | 2 +- lodash.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/lodash.js b/dist/lodash.js index 900cedf3d..0d7cb1ec1 100644 --- a/dist/lodash.js +++ b/dist/lodash.js @@ -2300,7 +2300,7 @@ * @name has * @memberOf SetCache * @param {*} value The value to search for. - * @returns {number} Returns `true` if `value` is found, else `false`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. */ function setCacheHas(value) { return this.__data__.has(value); diff --git a/lodash.js b/lodash.js index 44a14053d..0b60a509b 100644 --- a/lodash.js +++ b/lodash.js @@ -2300,7 +2300,7 @@ * @name has * @memberOf SetCache * @param {*} value The value to search for. - * @returns {number} Returns `true` if `value` is found, else `false`. + * @returns {boolean} Returns `true` if `value` is found, else `false`. */ function setCacheHas(value) { return this.__data__.has(value);