| 44 | // You must import this file in your entry point (extension.ts) to have access at runtime |
| 45 | declare global { |
| 46 | interface String { |
| 47 | toPosix(): string |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | String.prototype.toPosix = function (this: string): string { |
no outgoing calls
no test coverage detected