(path)
| 409 | |
| 410 | |
| 411 | def isURL(path): |
| 412 | if path is None: |
| 413 | return False |
| 414 | elif "://" in path: |
| 415 | return True |
| 416 | else: |
| 417 | return False |
| 418 | |
| 419 | |
| 420 | def getPlayerArgumentsByPathAsArray(arguments, path): |
no outgoing calls
no test coverage detected