Remove single-comma empty array form

This commit is contained in:
Wesley Wigham
2016-06-10 14:35:13 -07:00
parent a3a1c49739
commit d20459607b
2 changed files with 1 additions and 13 deletions
+1 -1
View File
@@ -493,7 +493,7 @@ namespace ts {
if (startsWith(value, "-")) {
return undefined;
}
if (value === "" || value === ",") {
if (value === "") {
return [];
}
const values = value.split(",");
@@ -246,18 +246,6 @@ namespace ts {
});
});
it("Parse single comma of --lib ", () => {
// 0.ts --lib
assertParseResult(["0.ts", "--lib", ","],
{
errors: [],
fileNames: ["0.ts"],
options: {
lib: []
}
});
});
it("Parse immediately following command line argument of --lib ", () => {
// 0.ts --lib
assertParseResult(["0.ts", "--lib", "--sourcemap"],