UNPKG

scrapper-tools

Version:

Its in development but I use it in all my web automation project.

4 lines (3 loc) 118 B
export default (min: number, max: number): number => { return Math.floor(Math.random() * (max - min + 1) + min) }