(annotation?: string)
| 834 | }; |
| 835 | |
| 836 | export const randomName = (annotation?: string) => { |
| 837 | const base = randomUUID().slice(0, 8); |
| 838 | return annotation ? `${annotation}-${base}` : base; |
| 839 | }; |
| 840 | |
| 841 | /** |
| 842 | * Awaiter is a helper that allows you to wait for a callback to be called. It |
no outgoing calls
no test coverage detected