(dataType: PortLike)
| 98 | isPrimitive(dataType) && predicate(dataType.name ?? 'text'); |
| 99 | |
| 100 | export const isTextLikePort = (dataType: PortLike): boolean => |
| 101 | isPrimitiveAnd(normalizePortType(dataType), (name) => name === 'text'); |
| 102 | |
| 103 | export const isListOfTextPort = (dataType: PortLike): boolean => { |
| 104 | const normalized = normalizePortType(dataType); |
nothing calls this directly
no test coverage detected