(value)
| 379 | ]; |
| 380 | |
| 381 | function validNodeSecret(value) { |
| 382 | return typeof value === 'string' && NODE_SECRET_RE.test(value); |
| 383 | } |
| 384 | |
| 385 | function getEnvNodeSecret() { |
| 386 | return ((process.env.A2A_NODE_SECRET || process.env.EVOMAP_NODE_SECRET || '').trim() || null); |
no outgoing calls
no test coverage detected