UNPKG

read-excel-file

Version:

Read `*.xlsx` files of moderate size in a web browser or on a server.

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