Node.js zlib.brotliDecompressSync() 方法
zlib.brotliDecompressSync() 方法是 Zlib 模块的内置应用程序编程接口,用于使用 BrotliDecompress 解压缩数据块。
句法:
zlib.brotliDecompressSync( buffer, options )
参数:此方法接受上面提到的两个参数,如下所述:
- buffer:该参数保存Buffer、TypedArray、DataView、ArrayBuffer、 字符串类型的缓冲区。
- options:此参数保存 zlib 选项值。
返回值:它使用 BrotliDecompress 返回数据块。
下面的例子说明了 Node.js 中zlib.brotliDecompressSync() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// zlib.brotliDecompressSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "Nidhi";
// Calling brotliDecompressSync method
var brotliCom = zlib.brotliCompressSync(input);
var brotliDec = zlib.brotliDecompressSync(
new Buffer.from(brotliCom)).toString('hex');
console.log(brotliDec);
输出:
4e69646869
示例 2:
// Node.js program to demonstrate the
// zlib.brotliDecompressSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "Nidhi";
// Calling brotliDecompressSync method
var brotliCom = zlib.brotliCompressSync(input).toString('hex')
var brotliDec = zlib.brotliDecompressSync(
new Buffer.from(brotliCom, 'hex')).toString('base64');
console.log(brotliDec);
输出:
TmlkaGk=
参考: https://nodejs.org/api/zlib.html#zlib_zlib_brotlidecompresssync_buffer_options