Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
chore: sync dist folder
  • Loading branch information
UlisesGascon committed Mar 10, 2026
commit 19f45bdde34326b93b86857a75a6c836f175dd5b
11 changes: 10 additions & 1 deletion dist/lodash.js
Original file line number Diff line number Diff line change
Expand Up @@ -6965,7 +6965,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 _
Expand Down Expand Up @@ -14164,6 +14164,8 @@
* **Note:** JavaScript follows the IEEE-754 standard for resolving
* floating-point values which can produce unexpected results.
*
* **Note:** If `lower` is greater than `upper`, the values are swapped.
*
* @static
* @memberOf _
* @since 0.7.0
Expand All @@ -14177,9 +14179,16 @@
* _.random(0, 5);
* // => an integer between 0 and 5
*
* // when lower is greater than upper the values are swapped
* _.random(5, 0);
* // => an integer between 0 and 5
*
* _.random(5);
* // => also an integer between 0 and 5
*
* _.random(-5);
* // => an integer between -5 and 0
*
* _.random(5, true);
* // => a floating-point number between 0 and 5
*
Expand Down
2 changes: 1 addition & 1 deletion dist/lodash.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading