(street)
| 11 | } |
| 12 | |
| 13 | function extractAltFromStreet(street) { |
| 14 | const regex = /-.*$/gm; |
| 15 | return street.replace(regex, '').trim(); |
| 16 | } |
| 17 | |
| 18 | function getRandomUserAgent() { |
| 19 | const number = Math.floor(Math.random() * 10); |
no outgoing calls
no test coverage detected