(p5, fn)
| 328 | }; |
| 329 | |
| 330 | function tableRow(p5, fn){ |
| 331 | /** |
| 332 | * A TableRow object represents a single row of data values, |
| 333 | * stored in columns, from a table. |
| 334 | * |
| 335 | * A Table Row contains both an ordered array, and an unordered |
| 336 | * JSON object. |
| 337 | * |
| 338 | * @class p5.TableRow |
| 339 | * @deprecated p5.Table will be removed in a future version of p5.js to make way for a new, friendlier version :) |
| 340 | * @constructor |
| 341 | * @param {any[]} row optional: populate the row with an |
| 342 | * array of values |
| 343 | */ |
| 344 | p5.TableRow = TableRow; |
| 345 | } |
| 346 | |
| 347 | export default tableRow; |
| 348 |
no outgoing calls
no test coverage detected