(isDirectory)
| 263 | } |
| 264 | |
| 265 | isLast(isDirectory) { |
| 266 | return this.indexes.has(this.last) || |
| 267 | (this.at(-1) === '' && isDirectory && |
| 268 | this.indexes.has(this.last - 1) && this.at(-2) === lazyMinimatch().GLOBSTAR); |
| 269 | } |
| 270 | isFirst() { |
| 271 | return this.indexes.has(0); |
| 272 | } |
no test coverage detected