From b5e672995ae26929d111a6e94589f8d03fb8e578 Mon Sep 17 00:00:00 2001 From: Muhammad Mughees Raza <153276757+mughees-raza@users.noreply.github.com> Date: Fri, 19 Dec 2025 02:12:55 +0500 Subject: [PATCH] jsdoc: Add -0 and BigInt zeros to _.compact falsey values list (#6062) * extend falsy values to include negative zero and BigInt zeros in _.compact JSDoc * refactor: correct spell falsey to falsy Co-authored-by: Jordan Harband --------- Co-authored-by: Jordan Harband --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 900cedf3d..44a14053d 100644 --- a/lodash.js +++ b/lodash.js @@ -6961,7 +6961,7 @@ /** * Creates an array with all falsey values removed. The values `false`, `null`, - * `0`, `""`, `undefined`, and `NaN` are falsey. + * `0`, `-0', '0n`, `""`, `undefined`, and `NaN` are falsy. * * @static * @memberOf _