(arg: FormKitContextShape)
| 1653 | * @public |
| 1654 | */ |
| 1655 | export function isList(arg: FormKitContextShape): arg is FormKitListContext { |
| 1656 | return arg.type === 'list' && Array.isArray(arg._value) |
| 1657 | } |
| 1658 | |
| 1659 | /** |
| 1660 | * Determine if a given object is a node. |