Files
vscode-extension-samples/custom-editor-sample/src/util.ts
2020-04-03 14:55:20 -07:00

9 lines
252 B
TypeScript

export 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;
}