refactor: use ===
This commit is contained in:
parent
8d5c9e96e4
commit
3c3140a100
1 changed files with 2 additions and 2 deletions
|
@ -100,9 +100,9 @@ export function connectStream(user: any, channel: string, listener: (message: Re
|
|||
ws.on('open', () => {
|
||||
ws.on('message', data => {
|
||||
const msg = JSON.parse(data.toString());
|
||||
if (msg.type == 'channel' && msg.body.id == 'a') {
|
||||
if (msg.type === 'channel' && msg.body.id === 'a') {
|
||||
listener(msg.body);
|
||||
} else if (msg.type == 'connected' && msg.body.id == 'a') {
|
||||
} else if (msg.type === 'connected' && msg.body.id === 'a') {
|
||||
res(ws);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue