|
| 1 | +/** |
| 2 | + * @fileoverview Optimized version of the `text-table` npm module to improve performance by replacing inefficient regex-based |
| 3 | + * whitespace trimming with a modern built-in method. |
| 4 | + * |
| 5 | + * This modification addresses a performance issue reported in https://github.com/eslint/eslint/issues/18709 |
| 6 | + * |
| 7 | + * The `text-table` module is published under the MIT License. For the original source, refer to: |
| 8 | + * https://www.npmjs.com/package/text-table. |
| 9 | + */ |
| 10 | + |
| 11 | +/* |
| 12 | + * |
| 13 | + * This software is released under the MIT license: |
| 14 | + * |
| 15 | + * Permission is hereby granted, free of charge, to any person obtaining a copy of |
| 16 | + * this software and associated documentation files (the "Software"), to deal in |
| 17 | + * the Software without restriction, including without limitation the rights to |
| 18 | + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
| 19 | + * the Software, and to permit persons to whom the Software is furnished to do so, |
| 20 | + * subject to the following conditions: |
| 21 | + * |
| 22 | + * The above copyright notice and this permission notice shall be included in all |
| 23 | + * copies or substantial portions of the Software. |
| 24 | + * |
| 25 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 26 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
| 27 | + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
| 28 | + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
| 29 | + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 30 | + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 31 | + */ |
| 32 | + |
| 33 | +"use strict"; |
| 34 | + |
| 35 | +module.exports = function(rows_, opts) { |
| 36 | + const hsep = " "; |
| 37 | + const align = opts.align; |
| 38 | + const stringLength = opts.stringLength; |
| 39 | + |
| 40 | + const sizes = rows_.reduce((acc, row) => { |
| 41 | + row.forEach((c, ix) => { |
| 42 | + const n = stringLength(c); |
| 43 | + |
| 44 | + if (!acc[ix] || n > acc[ix]) { |
| 45 | + acc[ix] = n; |
| 46 | + } |
| 47 | + }); |
| 48 | + return acc; |
| 49 | + }, []); |
| 50 | + |
| 51 | + return rows_ |
| 52 | + .map(row => |
| 53 | + row |
| 54 | + .map((c, ix) => { |
| 55 | + const n = sizes[ix] - stringLength(c) || 0; |
| 56 | + const s = Array(Math.max(n + 1, 1)).join(" "); |
| 57 | + |
| 58 | + if (align[ix] === "r") { |
| 59 | + return s + c; |
| 60 | + } |
| 61 | + |
| 62 | + return c + s; |
| 63 | + }) |
| 64 | + .join(hsep) |
| 65 | + .trimEnd()) |
| 66 | + .join("\n"); |
| 67 | +}; |
0 commit comments