(message)
| 995 | |
| 996 | const INTERNAL_PREFIX = 'NODE_'; |
| 997 | function isInternal(message) { |
| 998 | return (message !== null && |
| 999 | typeof message === 'object' && |
| 1000 | typeof message.cmd === 'string' && |
| 1001 | message.cmd.length > INTERNAL_PREFIX.length && |
| 1002 | StringPrototypeSlice(message.cmd, 0, INTERNAL_PREFIX.length) === |
| 1003 | INTERNAL_PREFIX); |
| 1004 | } |
| 1005 | |
| 1006 | const nop = FunctionPrototype; |
| 1007 |
no outgoing calls
no test coverage detected
searching dependent graphs…