UNPKG

@scribelabsai/amazon-trp

Version:

Amazon Textract Response Parser library for Node.

12 lines 257 B
export class Row { constructor() { this.cells = []; } toString() { return this.cells.map((c) => `[${c}]`).join(''); } toArray() { return this.cells.map((c) => c.toString()); } } //# sourceMappingURL=Row.js.map