El método zlib.inflateRawSync() es una interfaz de programación de aplicaciones incorporada del módulo Zlib que se utiliza para descomprimir una parte de los datos con InflateRaw.
Sintaxis:
zlib.inflateRawSync( buffer, options )
Parámetros: este método acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- buffer: este parámetro contiene el búfer de tipo Buffer, TypedArray, DataView, ArrayBuffer, string.
- options: este parámetro contiene el valor de las opciones de zlib.
Valor devuelto: Devuelve la porción de datos con InflateRaw.
Los siguientes ejemplos ilustran el uso del método zlib.inflateRawSync() en Node.js:
Ejemplo 1:
// Node.js program to demonstrate the // inflateRawSync() method // Including zlib module var zlib = require('zlib'); // Declaring input and assigning // it a value string var input = "GeeksforGeeks"; // Calling deflateRawSync method var deflatedRS = zlib.deflateRawSync(input); // Calling inflateRawSync method var inflatedRS = zlib.inflateRawSync( new Buffer.from(deflatedRS)).toString(); console.log(inflatedRS);
Producción:
GeeksforGeeks
Ejemplo 2:
// Node.js program to demonstrate the // inflateRawSync() method // Including zlib module var zlib = require('zlib'); // Declaring input and assigning // it a value string var input = "GeeksforGeeks"; // Calling deflateRawSync method var deflatedRS = zlib.deflateRawSync( input).toString('hex') // Calling inflateRawSync method var inflatedRS = zlib.inflateRawSync(new Buffer.from( deflatedRS, 'hex')).toString('hex'); console.log(inflatedRS);
Producción:
4765656b73666f724765656b73
Referencia: https://nodejs.org/api/zlib.html#zlib_zlib_inflaterawsync_buffer_options
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA