src/nodejs/jszlib

    Dark Mode
Search:
Group by:
  Source   Edit

Lets

BROTLI_DECODE: cint
  Source   Edit
BROTLI_ENCODE: cint
  Source   Edit
BROTLI_MODE_FONT: cint
  Source   Edit
BROTLI_MODE_TEXT: cint
  Source   Edit
BROTLI_PARAM_MODE: cint
  Source   Edit
DEFLATE: cint
  Source   Edit
DEFLATERAW: cint
  Source   Edit
GUNZIP: cint
  Source   Edit
GZIP: cint
  Source   Edit
INFLATE: cint
  Source   Edit
INFLATERAW: cint
  Source   Edit
UNZIP: cint
  Source   Edit
Z_BEST_SPEED: cint
  Source   Edit
Z_BLOCK: cint
  Source   Edit
Z_BUF_ERROR: cint
  Source   Edit
Z_DATA_ERROR: cint
  Source   Edit
Z_DEFAULT_CHUNK: cint
  Source   Edit
Z_DEFAULT_LEVEL: cint
  Source   Edit
Z_ERRNO: cint
  Source   Edit
Z_FILTERED: cint
  Source   Edit
Z_FINISH: cint
  Source   Edit
Z_FIXED: cint
  Source   Edit
Z_FULL_FLUSH: cint
  Source   Edit
Z_HUFFMAN_ONLY: cint
  Source   Edit
Z_MAX_CHUNK: cint
  Source   Edit
Z_MAX_LEVEL: cint
  Source   Edit
Z_MAX_MEMLEVEL: cint
  Source   Edit
Z_MAX_WINDOWBITS: cint
  Source   Edit
Z_MEM_ERROR: cint
  Source   Edit
Z_MIN_CHUNK: cint
  Source   Edit
Z_MIN_LEVEL: cint
  Source   Edit
Z_MIN_MEMLEVEL: cint
  Source   Edit
Z_MIN_WINDOWBITS: cint
  Source   Edit
Z_NEED_DICT: cint
  Source   Edit
Z_NO_COMPRESSION: cint
  Source   Edit
Z_NO_FLUSH: cint
  Source   Edit
Z_OK: cint
  Source   Edit
Z_PARTIAL_FLUSH: cint
  Source   Edit
Z_RLE: cint
  Source   Edit
Z_STREAM_END: cint
  Source   Edit
Z_STREAM_ERROR: cint
  Source   Edit
Z_SYNC_FLUSH: cint
  Source   Edit
Z_VERSION_ERROR: cint
  Source   Edit
ZLIB_VERNUM: cint
  Source   Edit

Procs

func brotliCompress[T](buffer: cstring; callback: T) {.
    importjs: "zlib.$1(#, #)", ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_brotlicompress_buffer_options_callback   Source   Edit
func brotliDecompress[T](buffer: cstring; callback: T) {.
    importjs: "zlib.$1(#, #)", ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_brotlidecompress_buffer_options_callback   Source   Edit
func deflate[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_deflate_buffer_options_callback   Source   Edit
func deflateRaw[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_deflateraw_buffer_options_callback   Source   Edit
func gunzip[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_gunzip_buffer_options_callback   Source   Edit
func gzip[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_gzip_buffer_options_callback   Source   Edit
func importZlib() {.importjs: "import * as zlib from \'zlib\'@", ...raises: [],
                    tags: [].}
Alias for import * as module_name from 'module_name';. Must be called once before using the module   Source   Edit
func inflate[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_inflate_buffer_options_callback   Source   Edit
func inflateRaw[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_inflateraw_buffer_options_callback   Source   Edit
func requireZlib() {.importjs: "const zlib = require(\'zlib\')@", ...raises: [],
                     tags: [].}
Alias for const module_name = require('module_name');. Must be called once before using the module   Source   Edit
func unzip[T](buffer: cstring; callback: T) {.importjs: "zlib.$1(#, #)",
    ...raises: [], tags: [].}
https://nodejs.org/api/zlib.html#zlib_zlib_unzip_buffer_options_callback   Source   Edit