is-eot

Check if a Buffer/Uint8Array is EOT


Keywords
font, font-face, sfnt, eot, type, detect, check, is, binary, buffer, uint8array
License
MIT
Install
npm install is-eot@1.0.0

Documentation

is-eot Build Status

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