mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-22 05:11:06 -05:00
17 lines
513 B
TypeScript
17 lines
513 B
TypeScript
/**
|
|
* A helper function that returns a unique alphanumeric identifier called a nonce.
|
|
*
|
|
* @remarks This function is primarily used to help enforce content security
|
|
* policies for resources/scripts being executed in a webview context.
|
|
*
|
|
* @returns A nonce
|
|
*/
|
|
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
|
|
}
|