(it)
| 347 | return it; |
| 348 | } |
| 349 | function assertFunction(it){ |
| 350 | assert(isFunction(it), it, ' is not a function!'); |
| 351 | return it; |
| 352 | } |
| 353 | function assertObject(it){ |
| 354 | assert(isObject(it), it, ' is not an object!'); |
| 355 | return it; |
no test coverage detected