let => const

This commit is contained in:
Benjamin Pasero
2016-09-03 11:07:43 +02:00
parent 955aa315b0
commit bb658ff13f
10 changed files with 186 additions and 186 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ function _spawnSharedProcess(options: ISharedProcessOptions): cp.ChildProcess {
}
if (options.debugPort) {
execArgv.push(`--debug=${ options.debugPort }`);
execArgv.push(`--debug=${options.debugPort}`);
}
const result = cp.fork(boostrapPath, ['--type=SharedProcess'], { env, execArgv });