You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
rdrew 1440706ce3 fixed gulp 6 years ago
..
index.js fixed gulp 6 years ago
package.json fixed gulp 6 years ago
readme.md fixed gulp 6 years ago

readme.md

is-gif Build Status

Check if a Buffer/Uint8Array is a GIF image

Used by image-type.

Install

$ npm install --save is-gif

Usage

Node.js
var readChunk = require('read-chunk'); // npm install read-chunk
var isGif = require('is-gif');
var buffer = readChunk.sync('unicorn.gif', 0, 3);

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

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

xhr.send();

API

isGif(buffer)

Accepts a Buffer (Node.js) or Uint8Array.

It only needs the first 3 bytes.

License

MIT © Sindre Sorhus