From 931b4e70554e64bbc2039de45b625af0ad1bf0f4 Mon Sep 17 00:00:00 2001 From: Ash Wilson Date: Wed, 2 Aug 2017 12:33:06 -0400 Subject: [PATCH] :shirt: lint lint lint --- src/native-watcher-registry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }