mirror of
				https://github.com/JKorf/CryptoExchange.Net
				synced 2025-10-30 18:07:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			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;
 | |
|   }
 | |
| }
 |