(num: number)
| 47 | }); |
| 48 | |
| 49 | function genCookies(num: number) { |
| 50 | const cookies: Record<string, string | undefined> = {}; |
| 51 | |
| 52 | for (let i = 0; i < num; i++) { |
| 53 | cookies["foo" + i] = "bar" + i; |
| 54 | } |
| 55 | |
| 56 | return cookies; |
| 57 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…