(s)
| 395 | } |
| 396 | |
| 397 | function wrapStream (s) { |
| 398 | if (typeof s.read === 'function') return s |
| 399 | else return (new Readable).wrap(s) |
| 400 | } |
| 401 | |
| 402 | function isStaticProperty(node) { |
| 403 | return node.type === 'Identifier' || node.type === 'Literal'; |
no outgoing calls
no test coverage detected
searching dependent graphs…