(value)
| 220 | } |
| 221 | |
| 222 | function isUndefinedOrNull (value) { |
| 223 | return value === null || value === undefined; |
| 224 | } |
| 225 | |
| 226 | function isArguments (object) { |
| 227 | return Object.prototype.toString.call(object) == '[object Arguments]'; |
no outgoing calls
no test coverage detected
searching dependent graphs…