(columnName: string, includeVegaDeckGLFields = false)
| 6 | export { getPresenterStyle } from './defaults'; |
| 7 | |
| 8 | export 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 | } |
no outgoing calls
no test coverage detected