(input)
| 74895 | function getRandomIntegerInclusive(min, max) { |
| 74896 | min = Math.ceil(min); |
| 74897 | max = Math.floor(max); |
| 74898 | const offset = Math.floor(Math.random() * (max - min + 1)); |
| 74899 | return offset + min; |
| 74900 | } |
| 74901 | |
| 74902 | // node_modules/@azure/core-util/dist/esm/object.js |