UNPKG

@multiplayer-app/session-recorder-common

Version:
11 lines 319 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isGzip = void 0; const isGzip = (buf) => { if (!buf || buf.length < 3) { return false; } return buf[0] === 0x1F && buf[1] === 0x8B && buf[2] === 0x08; }; exports.isGzip = isGzip; //# sourceMappingURL=is-gzip.js.map