Allow NodeJS v8.4 experimental HTTP2 (#6175)

* Allow NodeJS v8.4 experimental HTTP2

Native NodeJS HTTP/2 support experimental though, so might not be worth merging this

* Linter picked up on a line with only spaces

Removed the spaces
This commit is contained in:
Zev Isert 2017-09-01 15:42:45 -07:00 committed by Daniel Tschinder
parent 4f441ff27e
commit 2dd03e3ee9

View File

@ -54,6 +54,10 @@ getV8Flags(function(err, v8Flags) {
args.unshift("--expose-gc");
break;
case "--expose-http2":
args.unshift("--expose-http2");
break;
case "--nolazy":
args.unshift(flag);
break;