CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
randomInt.js12 linesDownload Raw Back to math
1'use strict';2 3Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });4 5const random = require('./random.js');6 7function randomInt(minimum, maximum) {8    return Math.floor(random.random(minimum, maximum));9}10 11exports.randomInt = randomInt;12 
basant307/AI_Governance_Project · CoolFace