import crypto from"node:crypto";
//this id is 10^{15} smaller than nano idconstyoctoid = (length = 10) => {
// Generate random bytes and convert them to a hex stringreturn crypto.randomBytes(length).toString('hex').slice(0, length);
};
exportdefault yoctoid;