(absPath)
| 305 | } |
| 306 | |
| 307 | _stat(absPath) { |
| 308 | return _.has(this._statCache, absPath) |
| 309 | ? this._statCache[absPath] |
| 310 | : this._statCache[absPath] = optimisticStatOrNull(absPath); |
| 311 | } |
| 312 | |
| 313 | // Search ancestor directories for control files (e.g. package.json, |
| 314 | // .babelrc), and return the absolute path of the first one found, or |