mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-25 16:07:52 -05:00
Clean up helpers which are always present in ES2020 (#55515)
This commit is contained in:
@@ -190,7 +190,7 @@ describe("unittests:: canWatch::", () => {
|
||||
let result = "|";
|
||||
let divider = addDivider ? "|" : undefined;
|
||||
columns.forEach((header, index) => {
|
||||
result += " " + ts.padRight(header, maxLengths[index]) + " |";
|
||||
result += " " + header.padEnd(maxLengths[index]) + " |";
|
||||
if (addDivider) divider += " " + "-".repeat(maxLengths[index]) + " |";
|
||||
});
|
||||
baseline.push(result);
|
||||
|
||||
Reference in New Issue
Block a user