* Return a direct child by id, or undefined * * @param id Identifier of direct child * @returns the child if found, or undefined
(id: string)
| 155 | * @returns the child if found, or undefined |
| 156 | */ |
| 157 | public tryFindChild(id: string): IConstruct | undefined { |
| 158 | return this._children?.[sanitizeId(id)]; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Return a direct child by id |
no test coverage detected