master
Vitaly Puzrin 2014-05-17 20:41:40 +04:00
rodzic d36ff393f6
commit efea8e667d
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -284,7 +284,7 @@ Inflate.prototype.onEnd = function(status) {
/**
* inflate(data[, options]) -> Uint8Array|Array|String
* - data (Uint8Array|Array|String): input data to compress.
* - data (Uint8Array|Array|String): input data to decompress.
* - options (Object): zlib inflate options.
*
* Decompress `data` with inflate/ungzip and `options`. Autodetect
@ -335,7 +335,7 @@ function inflate(input, options) {
/**
* inflateRaw(data[, options]) -> Uint8Array|Array|String
* - data (Uint8Array|Array|String): input data to compress.
* - data (Uint8Array|Array|String): input data to decompress.
* - options (Object): zlib inflate options.
*
* The same as [[inflate]], but creates raw data, without wrapper
@ -350,7 +350,7 @@ function inflateRaw(input, options) {
/**
* ungzip(data[, options]) -> Uint8Array|Array|String
* - data (Uint8Array|Array|String): input data to compress.
* - data (Uint8Array|Array|String): input data to decompress.
* - options (Object): zlib inflate options.
*
* Just shortcut to [[inflate]], because it autodetects format