(array, connection)
| 286 | }; |
| 287 | |
| 288 | function spliceConnection(array, connection) { |
| 289 | var index; |
| 290 | if ((index = array.indexOf(connection)) !== -1) { |
| 291 | // Remove connection from all connections |
| 292 | array.splice(index, 1); |
| 293 | } |
| 294 | } |
no outgoing calls
no test coverage detected