UNPKG

rascal

Version:

An advanced RabbitMQ / AMQP client built on amqplib

19 lines (14 loc) 354 B
const get = require('lodash').get; module.exports = function (options) { const min = get(options, 'min', 1000); const max = get(options, 'max', min); function next() { return Math.floor(Math.random() * (max - min + 1) + min); } // eslint-disable-next-line no-empty-function function reset() {} return { next, reset, }; };