(data)
| 254 | }) |
| 255 | |
| 256 | function formatConfigData(data) { |
| 257 | var mustacheFormattedData = {'config':[]}; |
| 258 | for (var prop in data) { |
| 259 | if(data.hasOwnProperty(prop)) { |
| 260 | mustacheFormattedData['config'].push({ |
| 261 | 'key': prop, |
| 262 | 'value': JSON.stringify(data[prop]) |
| 263 | }); |
| 264 | } |
| 265 | } |
| 266 | return mustacheFormattedData; |
| 267 | } |
| 268 | |
| 269 | function formatErrorTimeSecs(response){ |
| 270 | if('componentErrors' in response) { |
nothing calls this directly
no outgoing calls
no test coverage detected