(value)
| 223 | } |
| 224 | |
| 225 | function isJSONContainer(value) { |
| 226 | if (typeof value !== 'object' || value === null) return false; |
| 227 | if (!Array.isArray(value) && Object.prototype.toString.call(value) !== '[object Object]') return false; |
| 228 | if (isBigNumberLike(value) && Object.keys(value).length === 3) return false; |
| 229 | return true; |
| 230 | } |
| 231 | |
| 232 | function deepParseJSONStrings(obj) { |
| 233 | if (Array.isArray(obj)) { |
no test coverage detected