(watcher: string)
| 10 | const watcherObject: { [key: string]: chokidar.FSWatcher } = {} |
| 11 | |
| 12 | const disposeWatcher = (watcher: string) => { |
| 13 | watcherObject[watcher].close() |
| 14 | delete watcherObject[watcher] |
| 15 | } |
| 16 | |
| 17 | export const loadWatchers = (watchers: string[] = []): void => { |
| 18 | if (!watchers.length) { |
no outgoing calls
no test coverage detected