(value)
| 93 | } |
| 94 | |
| 95 | function isJSONObject(value) { |
| 96 | return Object.prototype.toString.call(value) === "[object Object]"; |
| 97 | } |
| 98 | function compareJson(a, b, strict) { |
| 99 | if (a === b) return true; |
| 100 | if (typeof a !== typeof b) return false; |
no outgoing calls
no test coverage detected