CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
randomU32.js10 linesDownload Raw Back to lib
1var x = 1 + Math.round(Math.random() * ((-1>>>0)-1));2 3/** Generate a random 32-bit unsigned integer in the specified [min, max] range. */4function randomU32(min, max) {5  x ^= x << 13; x ^= x >>> 17; x ^= x << 5;6  return (x >>> 0) % (max - min + 1) + min;7}8 9exports.randomU32 = randomU32;10 
basant307/AI_Governance_Project · CoolFace