( schema: FormKitSchemaNodeExtension | FormKitSchemaCondition | null )
| 159 | * @public |
| 160 | */ |
| 161 | export function isSchemaObject( |
| 162 | schema: FormKitSchemaNodeExtension | FormKitSchemaCondition | null |
| 163 | ): schema is |
| 164 | | FormKitSchemaDOMNode |
| 165 | | FormKitSchemaComponent |
| 166 | | FormKitSchemaFormKit { |
| 167 | return !!( |
| 168 | schema && |
| 169 | typeof schema === 'object' && |
| 170 | ('$el' in schema || '$cmp' in schema || '$formkit' in schema) |
| 171 | ) |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Extends a single schema node with an extension. The extension can be any |
no outgoing calls
no test coverage detected