MCPcopy
hub / github.com/exceljs/exceljs / getColumn

Function getColumn

spec/utils/index.js:122–128  ·  view source on GitHub ↗
(colNumber)

Source from the content-addressed store, hash-verified

120 return newColumn;
121 },
122 getColumn(colNumber) {
123 let column = this.columns[colNumber - 1] || this._keys[colNumber];
124 if (!column) {
125 column = this.columns[colNumber - 1] = new Column(this, colNumber);
126 }
127 return column;
128 },
129 getRow(rowNumber) {
130 let row = this.rows[rowNumber - 1];
131 if (!row) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…