(object)
| 6283 | } |
| 6284 | |
| 6285 | function isArguments(object) { |
| 6286 | return Object.prototype.toString.call(object) == '[object Arguments]'; |
| 6287 | } |
| 6288 | |
| 6289 | function objEquiv(a, b, strict, actualVisitedObjects) { |
| 6290 | if (a === null || a === undefined || b === null || b === undefined) return false; |
no outgoing calls
no test coverage detected