"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.aleatorio = void 0; const alfabeto = "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split(""); const aleatorio = (tamanho) => Array.from({ length: tamanho || 8 }, () => `ale-${alfabeto[Math.floor(Math.random() * 1000) % alfabeto.length]}`).join(""); exports.aleatorio = aleatorio;