(n = 10)
| 18 | const FNS_COUNT = 20; |
| 19 | |
| 20 | function genRandomId(n = 10): string { |
| 21 | const charset = "abcdefghijklmnopqrstuvwxyz"; |
| 22 | let id = ""; |
| 23 | for (let i = 0; i < n; i++) { |
| 24 | id += charset.charAt(Math.floor(Math.random() * charset.length)); |
| 25 | } |
| 26 | return id; |
| 27 | } |
| 28 | |
| 29 | interface Opts { |
| 30 | v1Opts: functions.RuntimeOptions; |
no outgoing calls
no test coverage detected
searching dependent graphs…