is-xcf
v0.0.8
Published
Check if a buffer/Uint8Array is an XCF image
Downloads
12
Maintainers
Readme
is-xcf
Check if a Buffer/Uint8Array is an XCF image
Inspired by sindresorhus and his wonderful repos like is-gif.
Install
npm install --save is-xcf
bower install --save is-xcf
Usage
Node.js
var fs = require('fs');
var isXCF = require('is-xcf');
var buffer = fs.readFileSync('awesome.xcf');
isXCF(buffer); // returns true
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'awesome.xcf');
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
isXCF(new Uint8Array(this.response)); // returns true
};
xhr.send();
API
isXCF(buffer)
Accepts a Buffer or Unit8Array.
Only needs the first 8 bytes, more is fine though.
License
This module is ISC licensed.