Skip to content

Instantly share code, notes, and snippets.

@shreyassanthu77
Created July 17, 2023 09:49
Show Gist options
  • Save shreyassanthu77/a77996f4548a1c637e0bf561bbe7e66a to your computer and use it in GitHub Desktop.
Save shreyassanthu77/a77996f4548a1c637e0bf561bbe7e66a to your computer and use it in GitHub Desktop.
Generates a random string of given length
const len = +(Deno.args[0] ?? "32");
const buf = new Uint8Array(len);
crypto.getRandomValues(buf);
const base64 = btoa(String.fromCharCode(...buf));
console.log(base64);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment