* Return a direct child by id, or undefined * * @param id Identifier of direct child * @returns the child if found, or undefined
(id: string)
| 129 | * @returns the child if found, or undefined |
| 130 | */ |
| 131 | public tryFindChild(id: string): IConstruct | undefined { |
| 132 | return this._children?.[sanitizeId(id)]; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Return a direct child by id |
no test coverage detected