(ms)
| 71 | |
| 72 | // Helper function to introduce a delay |
| 73 | function delay(ms) { |
| 74 | return new Promise(resolve => setTimeout(resolve, ms)); |
| 75 | } |
| 76 | |
| 77 | // Normalize a tag (lowercase, trim, remove special chars) |
| 78 | function normalizeTag(tag) { |
no outgoing calls
no test coverage detected