Home
last modified time | relevance | path

Searched refs:BrotliCompress (Results 1 - 2 of 2) sorted by relevance

/third_party/node/test/parallel/
H A Dtest-zlib-invalid-arg-value-brotli-compress.js5 // This test ensures that the BrotliCompress function throws
10 const { BrotliCompress, constants } = require('zlib');
18 assert.throws(() => BrotliCompress(opts), {
/third_party/node/lib/
H A Dzlib.js874 function BrotliCompress(opts) { function
875 if (!(this instanceof BrotliCompress))
876 return new BrotliCompress(opts);
879 ObjectSetPrototypeOf(BrotliCompress.prototype, Brotli.prototype);
880 ObjectSetPrototypeOf(BrotliCompress, Brotli);
918 BrotliCompress,
937 brotliCompress: createConvenienceMethod(BrotliCompress, false),
938 brotliCompressSync: createConvenienceMethod(BrotliCompress, true),
951 createBrotliCompress: createProperty(BrotliCompress),

Completed in 2 milliseconds