UNPKG

@multiplayer-app/otlp-core

Version:

Multiplayer otlp core

7 lines 199 B
export const isGzip = (buf) => { if (!buf || buf.length < 3) { return false; } return buf[0] === 0x1F && buf[1] === 0x8B && buf[2] === 0x08; }; //# sourceMappingURL=is-gzip.js.map