0.0.2 • Published 8 years ago

is-ooxml v0.0.2

Weekly downloads
2,129
License
ISC
Repository
github
Last release
8 years ago

is-ooxml

Detect if file buffer is an OOXML file type.

Checks for 'PK\x03\x04\x14\x00\x06\x00' at the start of a file buffer.

Install

npm install is-ooxml

Usage

const fs = require('fs');
const isOoxml = require('is-ooxml');

const docx = fs.readFileSync('example.docx');
const pdf = fs.readFileSync('example.pdf');

console.log(isOoxml(docx), isOoxml(pdf)); // > true false