Mohammad Asif cf937194cb Removed un-waned things 1. | пре 5 месеци | |
---|---|---|
.. | ||
.npmignore | пре 5 месеци | |
.travis.yml | пре 5 месеци | |
LICENSE | пре 5 месеци | |
README.md | пре 5 месеци | |
index.js | пре 5 месеци | |
package.json | пре 5 месеци |
Check if a given Buffer
or Uint8Array
is
deflate compressed.
npm install is-deflate --save
var fs = require('fs')
var zlib = require('zlib')
var isDeflate = require('is-deflate')
var buf = fs.readFileSync('my-file')
if (isDeflate(buf)) {
zlib.inflate(buf, function (err, data) {
if (err) throw err
console.log(data)
})
}
MIT