feat: multiprocessing and some diagnostics

This commit is contained in:
Sérgio Salgado 2021-01-13 17:05:51 +00:00 committed by Josh Harvey
parent 86e437a23a
commit c75319d166
4 changed files with 40 additions and 9 deletions

View file

@ -0,0 +1,5 @@
function randomIntFromInterval (min, max) {
return Math.floor(Math.random() * (max - min + 1) + min)
}
module.exports = { randomIntFromInterval }