MCPcopy Create free account
hub / github.com/HelloCSV/HelloCSV / isColumnReadOnly

Function isColumnReadOnly

src/sheet/utils.ts:112–120  ·  view source on GitHub ↗
(
  columnDefinition: SheetColumnDefinition
)

Source from the content-addressed store, hash-verified

110}
111
112export function isColumnReadOnly(
113 columnDefinition: SheetColumnDefinition
114): boolean {
115 if (columnDefinition.type === 'calculated') {
116 return true;
117 }
118
119 return !!columnDefinition.isReadOnly;
120}
121
122export function getEnumLabelDict(sheetDefinitions: SheetDefinition[]) {
123 return Object.fromEntries(

Callers 2

SheetDataEditorCellFunction · 0.90
SheetDataEditorHeaderFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected