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