mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-03 20:02:47 +00:00 
			
		
		
		
	simplify decompression and decoding
This commit is contained in:
		@@ -631,9 +631,7 @@ cqi.api.APIClient = class APIClient {
 | 
			
		||||
    const fn_name = 'ext_corpus_static_data';
 | 
			
		||||
    const fn_args = {corpus: corpus};
 | 
			
		||||
    let compressedEncodedData = await this.#request(fn_name, fn_args);
 | 
			
		||||
    let encodedData = pako.inflate(compressedEncodedData);
 | 
			
		||||
    let textDecoder = new TextDecoder();
 | 
			
		||||
    let data = textDecoder.decode(encodedData);
 | 
			
		||||
    let data = pako.inflate(compressedEncodedData, {to: 'string'});
 | 
			
		||||
    return JSON.parse(data);
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user