()
| 288 | } |
| 289 | |
| 290 | function createNonce() { |
| 291 | const alphabet = |
| 292 | "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"; |
| 293 | let value = ""; |
| 294 | for (let index = 0; index < 32; index += 1) { |
| 295 | value += alphabet[Math.floor(Math.random() * alphabet.length)]; |
| 296 | } |
| 297 | return value; |
| 298 | } |
| 299 | |
| 300 | function resolveCliPath(context, configuredPath) { |
| 301 | if (configuredPath) { |