Function: childElements()
childElements(
el): readonlyElement[]
Return all direct child elements (any namespace), in document order. Used where the caller wants to enumerate structure without filtering by name.
Parameters
el
Element
Returns
readonly Element[]
Example
import { childElements } from "@cosyte/ccda";
const kids = childElements(el);