(fieldType: string)
| 811 | } |
| 812 | |
| 813 | private isArray(fieldType: string): boolean { |
| 814 | return /(^array)|(range$)/.test(fieldType); |
| 815 | } |
| 816 | |
| 817 | private isEnum(fieldType: string): boolean { |
| 818 | return /^(enum)/.test(fieldType); |
no outgoing calls
no test coverage detected