npm.io
2.0.0 • Published 8 years ago

is-rpm

Licence
MIT
Version
2.0.0
Deps
0
Size
3 kB
Vulns
0
Weekly
0
Stars
1

is-rpm

NPM version Build Status

Check if a Buffer/Uint8Array is a RPM package.

Install

$ npm install --save is-rpm

Usage

Node.js
var readChunk = require('read-chunk'); // npm install read-chunk
var isRpm = require('is-rpm');
var buffer = readChunk.sync('unicorn.rpm', 0, 4);

isRpm(buffer);
//=> true
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'unicorn.rpm');
xhr.responseType = 'arraybuffer';

xhr.onload = function () {
	isRpm(new Uint8Array(this.response));
	//=> true
};

xhr.send();

API

isRpm(buffer)

Accepts a Buffer (Node.js) or Uint8Array.

It only needs the first 4 bytes.

License

MIT t1st3

Keywords