UNPKG

@adrianperea/genie.js

Version:

A highly flexible, data-agnostic, and UI-independent Genetic Algorithm Library

10 lines (8 loc) 206 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randBetween = randBetween; function randBetween(min, max) { return Math.floor(Math.random() * (max - min) + min); }