(node)
| 382 | } |
| 383 | |
| 384 | function isRequire (node) { |
| 385 | var c = node.callee; |
| 386 | return c |
| 387 | && node.type === 'CallExpression' |
| 388 | && c.type === 'Identifier' |
| 389 | && c.name === 'require' |
| 390 | ; |
| 391 | } |
| 392 | |
| 393 | function isStream (s) { |
| 394 | return s && typeof s === 'object' && typeof s.pipe === 'function'; |
no outgoing calls
no test coverage detected
searching dependent graphs…