ITADN

[Replacement]: is-gzip

#678Closedgameroman 创建于 2026-05-28
accepted
G
gameromancommented
### Package to replace `is-gzip` ### Suggested replacement(s) ```js function isGzip(buf) { if (buf.length < 3) return false return buf[0] === 31 && buf[1] === 139 && buf[2] === 8 } ``` ### Manifest type native (replaceable by a built-in platform feature) ### Rationale simple util ### Availability _No response_ ### Code example (optional) ```js ```
关闭于 2026-05-30 0 条评论