(str: string)
| 154 | return delimiter; |
| 155 | } |
| 156 | private isQuoteOpen(str: string): boolean { |
| 157 | const quote = this.quote; |
| 158 | const escape = this.escape; |
| 159 | return str[0] === quote && ( |
| 160 | str[1] !== quote || |
| 161 | str[1] === escape && (str[2] === quote || str.length === 2)); |
| 162 | } |
| 163 | private isQuoteClose(str: string): boolean { |
| 164 | const quote = this.quote; |
| 165 | const escape = this.escape; |
no outgoing calls
no test coverage detected