Files
vscode-front-matter/src/helpers/getNonce.ts
2021-08-24 21:01:58 +02:00

10 lines
264 B
TypeScript

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