(delimiter, header = this._getUnionNames(), escapeSpecialChars = true)
| 16368 | return arrays.rows |
| 16369 | } |
| 16370 | toDelimited(delimiter, header = this._getUnionNames(), escapeSpecialChars = true) { |
| 16371 | const regex = new RegExp(`(\\n|\\"|\\${delimiter})`) |
| 16372 | const atomFn = (str, row, column) => (!str.toString().match(regex) ? str : `"` + str.replace(/\"/g, `""`) + `"`) |
| 16373 | return this._toDelimited(delimiter, header, escapeSpecialChars ? atomFn : str => str) |
| 16374 | } |
| 16375 | _getMatrix(columns) { |
| 16376 | const matrix = [] |
| 16377 | this.forEach(subparticle => { |
no test coverage detected