(lines, startIndex)
| 59 | } |
| 60 | |
| 61 | function parseMultiLine(lines, startIndex) { |
| 62 | let value = parseQuoted(lines[startIndex]); |
| 63 | let i = startIndex + 1; |
| 64 | while (i < lines.length && /^\s*"/.test(lines[i])) { |
| 65 | value += parseQuoted(lines[i]); |
| 66 | i++; |
| 67 | } |
| 68 | return { value, nextIndex: i }; |
| 69 | } |
| 70 | |
| 71 | function unescapePO(s) { |
| 72 | return s |
no test coverage detected