(data)
| 212 | } |
| 213 | } |
| 214 | printHead(data) { |
| 215 | console.log(`\nBenchmark Results for ${path.basename(data.filename)}:`); |
| 216 | this.target === "MD" && console.log(""); |
| 217 | console.log(`Input Size: ${bytes(data.input.length)}`); |
| 218 | this.target === "MD" && console.log(""); |
| 219 | console.log(`Input Size (gzip): ${bytes(data.gzipped.length)}\n`); |
| 220 | } |
| 221 | getRows(result) { |
| 222 | return result.items.map(item => |
| 223 | this.getColumns(item, result).map((col, i) => { |