is-eot
v1.0.0
Published
Check if a Buffer/Uint8Array is EOT
Downloads
16,276
Maintainers
Readme
is-eot
Check if a Buffer/Uint8Array is a EOT
Install
$ npm install --save is-eot
Usage
Node.js
var readChunk = require('read-chunk'); // npm install read-chunk
var isEot = require('is-eot');
var buffer = readChunk.sync('font.eot', 0, 36);
isEot(buffer);
//=> true
Browser
var xhr = new XMLHttpRequest();
xhr.open('GET', 'font.eot');
xhr.responseType = 'arraybuffer';
xhr.onload = function () {
isEot(new Uint8Array(this.response));
//=> true
};
xhr.send();
API
isEot(buffer)
Accepts a Buffer (Node.js) or Uint8Array.
Test
$ npm test
test file from Font-Awesome
License
MIT © junmer