add use-strict to valid node flags - fixes #667

This commit is contained in:
Sebastian McKenzie 2015-02-03 22:21:55 +11:00
parent c7f5715d8e
commit 389914c427

View File

@ -35,6 +35,7 @@ process.argv.slice(2).forEach(function(arg){
case "--prof":
case "--throw-deprecation":
case "--trace-deprecation":
case "--use-strict":
args.unshift(arg);
break;