(filepath: string, start: string)
| 475 | } |
| 476 | |
| 477 | function removeStartsWith(filepath: string, start: string) { |
| 478 | if (filepath.startsWith(start)) { |
| 479 | return filepath.slice(start.length) |
| 480 | } |
| 481 | |
| 482 | return filepath |
| 483 | } |
no outgoing calls
no test coverage detected