UNPKG

office-text-extractor

Version:

Yet another library to extract text from MS Office and PDF files

29 lines (24 loc) 782 B
// source/parsers/docx.ts // The text extracter for DOCX files. import { type Buffer } from 'node:buffer' import { extractRawText as parseWordFile } from 'mammoth' import type { TextExtractionMethod } from '../lib.js' export class DocExtractor implements TextExtractionMethod { /** * The type(s) of input acceptable to this method. */ mimes = [ 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', ] /** * Extract text from a DOCX file if possible. * * @param payload The input and its type. * @returns The text extracted from the input. */ apply = async (input: Buffer): Promise<string> => { // Convert the DOCX to text and return the text. const parsedDocx = await parseWordFile({ buffer: input }) return parsedDocx.value } }