(arr)
| 220 | } |
| 221 | |
| 222 | function decodeAll(arr) { |
| 223 | if (Array.isArray(arr)) { |
| 224 | var ret = []; |
| 225 | arr.forEach(function(aval) { |
| 226 | ret.push(decodeText(aval)); |
| 227 | }); |
| 228 | return ret; |
| 229 | } else { |
| 230 | return arr; |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | function fixKeys(doc) { |
| 235 | if (doc) { |
nothing calls this directly
no test coverage detected