* Return a direct child by id, or undefined * * @param id Identifier of direct child * @returns the child if found, or undefined
(id: string)
| 142 | * @returns the child if found, or undefined |
| 143 | */ |
| 144 | public tryFindChild(id: string): IConstruct | undefined { |
| 145 | return this._children?.[sanitizeId(id)]; |
| 146 | } |
| 147 | |
| 148 | /** |
| 149 | * Return a direct child by id |
no test coverage detected