* Returns the CSV file as string. * @param {boolean} header - If false, omit the first row containing the * column names. * @param {boolean} allColumns - Whether to check all items for column names. * Uses only the first item if false. * @returns {Promise }
(header = true, allColumns = false)
| 94 | * @returns {Promise<string>} |
| 95 | */ |
| 96 | async toString(header = true, allColumns = false) { |
| 97 | return await convert(this.data, header, allColumns); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | /** |
no test coverage detected