UNPKG

get-random-people

Version:

A javascript package that generates huge dataset of fake, but real looking data of a person. Useful to create graphs, tables, etc.

5 lines (4 loc) 116 B
function randInt(min, max){ return Math.round(Math.random() * (max - min) + min) } module.exports = randInt