(message)
| 31 | } |
| 32 | |
| 33 | function isBroadcast(message) { |
| 34 | return ( |
| 35 | typeof message.method === 'string' && |
| 36 | message.id === undefined && |
| 37 | message.target === undefined |
| 38 | ); |
| 39 | } |
| 40 | |
| 41 | function isRequest(message) { |
| 42 | return ( |
no outgoing calls
no test coverage detected
searching dependent graphs…