rand.mjs 205 B

12345
  1. const generateId = () => Math.floor(Math.random() * 1e4);
  2. const getRandomInt = (max) => Math.floor(Math.random() * Math.floor(max));
  3. export { generateId, getRandomInt };
  4. //# sourceMappingURL=rand.mjs.map