@xhmikosr/archive-type

7.0.0 • Public • Published

archive-type CI

Detect the archive type of a Buffer/Uint8Array

Install

npm install @xhmikosr/archive-type

Usage

import archiveType from '@xhmikosr/archive-type';
import {readChunk} from 'read-chunk';

const buffer = await readChunk('unicorn.zip', 0, 262);

await archiveType(buffer);
//=> {ext: 'zip', mime: 'application/zip'}

API

archiveType(input)

Returns an Object with:

Or null when no match.

input

Type: Buffer Uint8Array

It only needs the first 262 bytes.

Supported file types

  • 7z
  • bz2
  • gz
  • rar
  • tar
  • zip
  • xz
  • gz
  • zst

Related

License

MIT © Kevin Mårtensson

Package Sidebar

Install

npm i @xhmikosr/archive-type

Weekly Downloads

93,803

Version

7.0.0

License

MIT

Unpacked Size

3.49 kB

Total Files

4

Last publish

Collaborators

  • xhmikosr