UNPKG

is-gzip

Version:

Check if a Buffer/Uint8Array is a GZIP file

9 lines (7 loc) 157 B
'use strict'; module.exports = buf => { if (!buf || buf.length < 3) { return false; } return buf[0] === 0x1F && buf[1] === 0x8B && buf[2] === 0x08; };