(object)
| 224 | } |
| 225 | |
| 226 | function isArguments (object) { |
| 227 | return Object.prototype.toString.call(object) == '[object Arguments]'; |
| 228 | } |
| 229 | |
| 230 | function objEquiv (a, b) { |
| 231 | if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) |
no outgoing calls
no test coverage detected
searching dependent graphs…