* Retrieve a tutorial by name. * @param {string} name - Tutorial name. * @return {module:jsdoc/tutorial.Tutorial} Tutorial instance.
(name)
| 129 | * @return {module:jsdoc/tutorial.Tutorial} Tutorial instance. |
| 130 | */ |
| 131 | getByName(name) { |
| 132 | return hasOwnProp.call(this._tutorials, name) && this._tutorials[name]; |
| 133 | } |
| 134 | |
| 135 | /** |
| 136 | * Add a child tutorial to the root. |
no outgoing calls
no test coverage detected