(arr)
| 111 | } |
| 112 | |
| 113 | function isSorted(arr) { |
| 114 | return arr.every((v, i, a) => !i || a[i - 1] <= v); |
| 115 | } |
| 116 | |
| 117 | const lines = manifest.split('\n'); |
| 118 | assert(lines[0] === 'Manifest-Version: 1.0'); |
no outgoing calls
no test coverage detected
searching dependent graphs…