From 4d5bdf9a80c646fbf048c339dbbb91f42597ac69 Mon Sep 17 00:00:00 2001 From: JP Richardson Date: Wed, 28 Jan 2015 02:30:31 -0600 Subject: [PATCH] lib/_copy: space vars into logical grouping --- lib/_copy.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/_copy.js b/lib/_copy.js index 5ff3907..b31268b 100644 --- a/lib/_copy.js +++ b/lib/_copy.js @@ -14,11 +14,14 @@ function ncp (source, dest, options, callback) { var basePath = process.cwd() var currentPath = path.resolve(basePath, source) var targetPath = path.resolve(basePath, dest) + var filter = options.filter var transform = options.transform var clobber = options.clobber !== false var dereference = options.dereference + var errs = null + var started = 0 var finished = 0 var running = 0