MCPcopy Index your code
hub / github.com/microsoft/SandDance / isInternalFieldName

Function isInternalFieldName

packages/sanddance/src/util.ts:8–16  ·  view source on GitHub ↗
(columnName: string, includeVegaDeckGLFields = false)

Source from the content-addressed store, hash-verified

6export { getPresenterStyle } from './defaults';
7
8export function isInternalFieldName(columnName: string, includeVegaDeckGLFields = false) {
9 if (includeVegaDeckGLFields) {
10 if (columnName === GL_ORDINAL) return true;
11 }
12 for (const f in FieldNames) {
13 if (columnName === FieldNames[f]) return true;
14 }
15 return false;
16}

Callers 2

getRowsFunction · 0.90
renderDetailsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected