We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 498b1ab commit 4bf3600Copy full SHA for 4bf3600
packages/plugin-help/src/utils.ts
@@ -1,10 +1,10 @@
1
import textTable from "text-table";
2
import stringWidth from "string-width";
3
4
-export const table = (...items: string[][]) => textTable(items, { stringLength: stringWidth });
+export const table = (items: string[][]) => textTable(items, { stringLength: stringWidth });
5
6
-export const splitTable = (...items: string[][]) => {
7
- return table(...items).split("\n");
+export const splitTable = (items: string[][]) => {
+ return table(items).split("\n");
8
};
9
10
const primitiveMap = new Map<any, string>([
0 commit comments