()
| 121 | }; |
| 122 | |
| 123 | let _canRenderFormattedResult = function () { |
| 124 | try { |
| 125 | if (window.__fhJsonResultActionsEnabled === false) { |
| 126 | return false; |
| 127 | } |
| 128 | let pageContainer = document.querySelector('#pageContainer'); |
| 129 | if (pageContainer && pageContainer.__vue__ && pageContainer.__vue__.errorMsg) { |
| 130 | return false; |
| 131 | } |
| 132 | } catch (e) { |
| 133 | } |
| 134 | return true; |
| 135 | }; |
| 136 | |
| 137 | let _hasPrettyJsonResult = function () { |
| 138 | return _canRenderFormattedResult() && !!cachedJsonString; |
no outgoing calls
no test coverage detected