UNPKG
@sagi.io/maxmind
Version:
latest (2.11.3)
2.11.3
2.11.2
2.11.1
IP lookup using Maxmind databases
github.com/sagi/node-maxmind
sagi/node-maxmind
@sagi.io/maxmind
/
lib
/
is-gzip.js
10 lines
(7 loc)
•
170 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
module
.
exports
=
function
(
buf
) {
if
(!buf || buf.
length
<
3
) {
return
false
; }
return
buf[
0
] ===
0x1f
&& buf[
1
] ===
0x8b
&& buf[
2
] ===
0x08
; };