()
| 141 | * Return the first available standard browser helper, or null. |
| 142 | */ |
| 143 | export function getBrowserHelper() { |
| 144 | const helpers = Container.helpers() |
| 145 | for (const name of supportedHelpers) { |
| 146 | if (Object.keys(helpers).indexOf(name) > -1) { |
| 147 | return helpers[name] |
| 148 | } |
| 149 | } |
| 150 | return null |
| 151 | } |
no test coverage detected