* Get all support objects or get support object by name * * @api * @param {string} [name] * @returns { * }
(name)
| 174 | * @returns { * } |
| 175 | */ |
| 176 | static support(name) { |
| 177 | if (!name) { |
| 178 | return container.proxySupport |
| 179 | } |
| 180 | if (typeof container.support[name] === 'function') { |
| 181 | return container.support[name] |
| 182 | } |
| 183 | return container.proxySupport[name] |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Get raw (non-proxied) support objects for direct access. |
no outgoing calls
no test coverage detected