mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-18 07:29:16 -05:00
Remove single-comma empty array form
This commit is contained in:
@@ -493,7 +493,7 @@ namespace ts {
|
||||
if (startsWith(value, "-")) {
|
||||
return undefined;
|
||||
}
|
||||
if (value === "" || value === ",") {
|
||||
if (value === "") {
|
||||
return [];
|
||||
}
|
||||
const values = value.split(",");
|
||||
|
||||
Reference in New Issue
Block a user