Lines Matching +full:- +full:- +full:needed
15 // The use of Unicode characters below is the only non-comment use of non-ASCII
16 // Unicode characters in Node.js built-in modules. If they are ever removed or
17 // rewritten with \u escapes, then a test will need to be (re-)added to Node.js
18 // core to verify that Unicode characters work in built-ins.
21 /* eslint-disable node-core/non-ascii-character */
35 /* eslint-enable node-core/non-ascii-character */
43 const needed = (columnWidths[i] - len) / 2; constant
44 // round(needed) + ceil(needed) will always add up to the amount
46 out += StringPrototypeRepeat(' ', needed) + cell +
47 StringPrototypeRepeat(' ', MathCeil(needed));
48 if (i !== row.length - 1)