diff --git a/src/native-watcher-registry.js b/src/native-watcher-registry.js index 274b30cde..a779f78f5 100644 --- a/src/native-watcher-registry.js +++ b/src/native-watcher-registry.js @@ -3,7 +3,7 @@ const path = require('path') // Private: re-join the segments split from an absolute path to form another absolute path. -function absolute(...parts) { +function absolute (...parts) { const candidate = path.join(...parts) return path.isAbsolute(candidate) ? candidate : path.join(path.sep, candidate) }