| 121 | }; |
| 122 | |
| 123 | let _stringifyJsonForFormatter = jsonObj => { |
| 124 | const utils = _getJsonAutoUtils(); |
| 125 | if (typeof utils.safeStringify === 'function') { |
| 126 | return utils.safeStringify(jsonObj); |
| 127 | } |
| 128 | return JSON.stringify(jsonObj); |
| 129 | }; |
| 130 | |
| 131 | let _coerceDecodedJsonSource = (source, decodedSource) => { |
| 132 | const utils = _getJsonAutoUtils(); |
no test coverage detected