vscode-kanbn/ext-src/getNonce.ts
2021-04-17 01:28:17 +01:00

9 lines
267 B
TypeScript

export default function getNonce() {
let text = "";
const possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
for (let i = 0; i < 32; i++) {
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
}