1
1
'use strict' ;
2
2
3
3
const {
4
+ ArrayPrototypeJoin,
5
+ ArrayPrototypeMap,
4
6
MathCeil,
5
7
MathMax,
8
+ MathMaxApply,
6
9
ObjectPrototypeHasOwnProperty,
10
+ StringPrototypeRepeat,
7
11
} = primordials ;
8
12
9
13
const { getStringWidth } = require ( 'internal/util/inspect' ) ;
@@ -39,7 +43,8 @@ const renderRow = (row, columnWidths) => {
39
43
const needed = ( columnWidths [ i ] - len ) / 2 ;
40
44
// round(needed) + ceil(needed) will always add up to the amount
41
45
// of spaces we need while also left justifying the output.
42
- out += `${ ' ' . repeat ( needed ) } ${ cell } ${ ' ' . repeat ( MathCeil ( needed ) ) } ` ;
46
+ out += StringPrototypeRepeat ( ' ' , needed ) + cell +
47
+ StringPrototypeRepeat ( ' ' , MathCeil ( needed ) ) ;
43
48
if ( i !== row . length - 1 )
44
49
out += tableChars . middle ;
45
50
}
@@ -49,8 +54,9 @@ const renderRow = (row, columnWidths) => {
49
54
50
55
const table = ( head , columns ) => {
51
56
const rows = [ ] ;
52
- const columnWidths = head . map ( ( h ) => getStringWidth ( h ) ) ;
53
- const longestColumn = columns . reduce ( ( n , a ) => MathMax ( n , a . length ) , 0 ) ;
57
+ const columnWidths = ArrayPrototypeMap ( head , ( h ) => getStringWidth ( h ) ) ;
58
+ const longestColumn = MathMaxApply ( ArrayPrototypeMap ( columns , ( a ) =>
59
+ a . length ) ) ;
54
60
55
61
for ( let i = 0 ; i < head . length ; i ++ ) {
56
62
const column = columns [ i ] ;
@@ -65,18 +71,22 @@ const table = (head, columns) => {
65
71
}
66
72
}
67
73
68
- const divider = columnWidths . map ( ( i ) =>
69
- tableChars . middleMiddle . repeat ( i + 2 ) ) ;
74
+ const divider = ArrayPrototypeMap ( columnWidths , ( i ) =>
75
+ StringPrototypeRepeat ( tableChars . middleMiddle , i + 2 ) ) ;
70
76
71
- let result = `${ tableChars . topLeft } ${ divider . join ( tableChars . topMiddle ) } ` +
72
- `${ tableChars . topRight } \n${ renderRow ( head , columnWidths ) } \n` +
73
- `${ tableChars . leftMiddle } ${ divider . join ( tableChars . rowMiddle ) } ` +
74
- `${ tableChars . rightMiddle } \n` ;
77
+ let result = tableChars . topLeft +
78
+ ArrayPrototypeJoin ( divider , tableChars . topMiddle ) +
79
+ tableChars . topRight + '\n' +
80
+ renderRow ( head , columnWidths ) + '\n' +
81
+ tableChars . leftMiddle +
82
+ ArrayPrototypeJoin ( divider , tableChars . rowMiddle ) +
83
+ tableChars . rightMiddle + '\n' ;
75
84
76
85
for ( const row of rows )
77
86
result += `${ renderRow ( row , columnWidths ) } \n` ;
78
87
79
- result += `${ tableChars . bottomLeft } ${ divider . join ( tableChars . bottomMiddle ) } ` +
88
+ result += tableChars . bottomLeft +
89
+ ArrayPrototypeJoin ( divider , tableChars . bottomMiddle ) +
80
90
tableChars . bottomRight ;
81
91
82
92
return result ;
0 commit comments