▲ Working With Websocket Timeout at www.jstips.co▼1 up and 0 down, posted by loverajoel 3159 days ago 1 comment
sbruchmann 3159 days ago. link 2 points ▲ ▼```javascript function cancelKeepAlive() { if (timerId) { cancelTimeout(timerId); } } ``` Did you mean `clearTimeout`?
```javascript function cancelKeepAlive() { if (timerId) { cancelTimeout(timerId); } } ``` Did you mean `clearTimeout`?