0.0.3 • Published 8 years ago

is-docx v0.0.3

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

is-docx

Detect docx file type from buffer.

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

Install

npm install is-docx

Usage

const fs = require('fs');
const isDocx = require('is-docx');

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

console.log(isDocx(file)); // > true