is-eot

Check if a Buffer/Uint8Array is EOT

Usage no npm install needed!

<script type="module">
  import isEot from 'https://cdn.skypack.dev/is-eot';
</script>

README

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