Node.js zlib.brotliCompressSync() 方法
zlib.brotliCompressSync()方法是 Zlib 模块的内置应用程序编程接口,用于使用 BrotliCompress 压缩数据块。
句法:
zlib.brotliCompressSync( buffer, options )
参数:此方法接受上面提到的两个参数,如下所述:
- buffer:该参数保存Buffer、TypedArray、DataView、ArrayBuffer、 字符串类型的缓冲区。
- options:它是一个可选参数。
返回值:它使用 BrotliCompress 返回数据块。
下面的例子说明了在 Node.js 中zlib.brotliCompressSync() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// zlib.brotliCompressSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "0123456789";
// Calling brotliCompressSync method
var brotliCom = zlib.brotliCompressSync(input);
console.log(brotliCom);
输出:
// Buffer 8b 04 80 30 31 32 33 34 35 36 37 38 39 03
示例 2:
// Node.js program to demonstrate the
// zlib.brotliCompressSync() method
// Including zlib module
var zlib = require('zlib');
// Declaring input and assigning
// it a value string
var input = "0123456789";
// Calling brotliCompressSync method
var brotliCom = zlib.brotliCompressSync(input).toString('hex');
console.log(brotliCom);
输出:
8b04803031323334353637383903
参考: https://nodejs.org/api/zlib.html#zlib_zlib_brotlicompresssync_buffer_options