* Get all helpers or get a helper by name * * @api * @param {string} [name] * @returns { * }
(name)
| 202 | * @returns { * } |
| 203 | */ |
| 204 | static helpers(name) { |
| 205 | if (!name) { |
| 206 | return container.helpers |
| 207 | } |
| 208 | return container.helpers[name] |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Get translation |
no outgoing calls
no test coverage detected