mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-29 19:55:20 +00:00
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
//
|
|
// Copyright © 2024 Hardcore Engineering Inc.
|
|
//
|
|
import mammoth from 'mammoth'
|
|
|
|
export async function convertToHtml (buffer: Buffer): Promise<string> {
|
|
return (await mammoth.convertToHtml({ buffer })).value
|
|
}
|