(it)
| 351 | return it; |
| 352 | } |
| 353 | function assertObject(it){ |
| 354 | assert(isObject(it), it, ' is not an object!'); |
| 355 | return it; |
| 356 | } |
| 357 | function assertInstance(it, Constructor, name){ |
| 358 | assert(it instanceof Constructor, name, ": use the 'new' operator!"); |
| 359 | } |
no test coverage detected