(value: string)
| 951 | const hasProtocolSlashes = (value: string): boolean => /^[a-z][\d+\-.a-z]*:\/\//iv.test(value); |
| 952 | |
| 953 | const hasHttpProtocolWithoutSlashes = (value: string): boolean => /^https?:(?!\/\/)/iv.test(value); |
| 954 | |
| 955 | const hasUnixProtocolWithoutSlashes = (value: string): boolean => /^unix:/iv.test(value); |
| 956 |
no outgoing calls
no test coverage detected
searching dependent graphs…