UNPKG

read-excel-file

Version:

Read small to medium `*.xlsx` files in a browser or Node.js. Parse to JSON with a strict schema.

8 lines 251 B
import { getSharedStrings } from '../xml/xlsx.js'; export default function parseSharedStrings(content, xml) { if (!content) { return []; } return getSharedStrings(xml.createDocument(content)); } //# sourceMappingURL=parseSharedStrings.js.map