MCPcopy
hub / github.com/exceljs/exceljs / constructor

Method constructor

lib/doc/table.js:70–79  ·  view source on GitHub ↗
(worksheet, table)

Source from the content-addressed store, hash-verified

68
69class Table {
70 constructor(worksheet, table) {
71 this.worksheet = worksheet;
72 if (table) {
73 this.table = table;
74 // check things are ok first
75 this.validate();
76
77 this.store();
78 }
79 }
80
81 getFormula(column) {
82 // get the correct formula to apply to the totals row

Callers

nothing calls this directly

Calls 2

validateMethod · 0.95
storeMethod · 0.95

Tested by

no test coverage detected