* Stop watching a directory. * * @param {string} dir * @private
(dir)
| 179 | */ |
| 180 | |
| 181 | stopWatching(dir) { |
| 182 | if (this.watched[dir]) { |
| 183 | this.watched[dir].close(); |
| 184 | delete this.watched[dir]; |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | /** |
| 189 | * End watching. |
no test coverage detected