-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RC #291 - Adding Numbers class to shared package
- Loading branch information
1 parent
6da17a7
commit 6bec342
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// @flow | ||
|
||
/** | ||
* Returns a random integer between the min (inclusive) and max (exclude) values. | ||
* | ||
* @param min | ||
* @param max | ||
* | ||
* @returns {number} | ||
*/ | ||
const getRandomInt = (min, max) => { | ||
const minCeiled = Math.ceil(min); | ||
const maxFloored = Math.floor(max); | ||
return Math.floor(Math.random() * (maxFloored - minCeiled) + minCeiled); | ||
}; | ||
|
||
export default { | ||
getRandomInt | ||
}; |