mirror of
https://github.com/JKorf/CryptoExchange.Net.git
synced 2026-08-11 16:32:57 +00:00
d533557324
Websocket refactoring
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
export default class Response {
|
|
constructor(mode) {
|
|
if (mode.data === undefined)
|
|
mode.data = {};
|
|
this.data = mode.data;
|
|
}
|
|
|
|
ignoreMatch() {
|
|
this.ignore = true;
|
|
}
|
|
}
|