(rawText)
| 982 | } |
| 983 | |
| 984 | function splitBatchBlocks(rawText) { |
| 985 | const blocks = String(rawText || "") |
| 986 | .split(/\n\s*\n+/) |
| 987 | .map((part) => part.trim()) |
| 988 | .filter(Boolean); |
| 989 | if (blocks.length > 1) return blocks; |
| 990 | return String(rawText || "") |
| 991 | .split(/(?:^-{3,}|^={3,})/m) |
| 992 | .map((part) => part.trim()) |
| 993 | .filter(Boolean); |
| 994 | } |
| 995 | |
| 996 | function renderBatchProfiles() { |
| 997 | const wrap = document.getElementById("billing-batch-wrap"); |
no test coverage detected