UNPKG

read-excel-file

Version:

Read `.xlsx` files in a web browser or in Node.js

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