UNPKG
is-zst
Version:
latest (1.0.0)
1.0.0
Check if a buffer is zst compressed.
github.com/Stieneee/is-zst
Stieneee/is-zst
is-zst
/
README.md
13 lines
(9 loc)
•
176 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
# is-zst
Check
if
a buffer is zst compressed.
## Usage
```js
const
fs
=
require
(
'fs'
);
const
isZst
=
require
(
'is-zst'
);
isZst
(fs.
readFileSync
(
'foo.tar.zst'
));
//=> true
```