(fileMode: number)
| 110 | } |
| 111 | |
| 112 | function isExecutable(fileMode: number) { |
| 113 | // tslint:disable-next-line:no-bitwise |
| 114 | return (fileMode & 0b001_000_000) > 0 |
| 115 | } |
| 116 | |
| 117 | const trimRight = (s: string) => s.replace(/\s+$/, "") |
| 118 | function linesAreEqual(a: string, b: string) { |
no outgoing calls
no test coverage detected
searching dependent graphs…