mirror of
https://github.com/luxfi/pics.git
synced 2026-07-27 05:11:31 +00:00
no-template-curly-in-string (+find and fix minor bug in redirect) curly no-multiple-empty-lines
21 lines
500 B
JavaScript
21 lines
500 B
JavaScript
'use strict';
|
|
|
|
const { promisify } = require('util')
|
|
, randomBytes = promisify(require('crypto').randomBytes);
|
|
|
|
//NOTE: should only be used for ints, floors your inputs
|
|
module.exports = async (min, max) => {
|
|
min = Math.floor(min);
|
|
max = Math.floor(max);
|
|
if (max <= min) {
|
|
return min;
|
|
}
|
|
const mod = max - min + 1;
|
|
const div = (((0xffffffff - (mod-1)) / mod) | 0) + 1;
|
|
let g;
|
|
do {
|
|
g = (await randomBytes(4)).readUInt32LE();
|
|
} while (g > div * mod - 1);
|
|
return ((g / div) | 0) + min;
|
|
};
|