(f)
| 247 | }; |
| 248 | |
| 249 | function splitOnColon (f) { |
| 250 | var pos = f.lastIndexOf(':'); |
| 251 | if (pos == -1) { |
| 252 | return [f]; // No colon |
| 253 | } else { |
| 254 | if ((/[a-zA-Z]:[\\/]/.test(f)) && (pos == 1)){ |
| 255 | return [f]; // Windows path and colon is part of drive name |
| 256 | } else { |
| 257 | return [f.slice(0, pos), f.slice(pos + 1)]; |
| 258 | } |
| 259 | } |
| 260 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…