Published a new NPM library "xlsx-parse-table" under `@libs-jd`

🚀 Excited to announce the release of @libs-jd/xlsx-parse-table! 🚀
This library allows you to easily parse tables from Excel worksheets. Whether you're working with large datasets or need to extract specific tables, this tool has got you covered.
🔧 Installation:
npm install --save @libs-jd/xlsx-parse-table xlsx
💻 Usage Example:
const xlsx = require("xlsx");
const workbook = xlsx.readFile("path/to/excel-file.xlsx");
const worksheet = workbook.Sheets[workbook.SheetNames[0]];
const { parse } = require("@libs-jd/xlsx-parse-table");
const tables = parse(worksheet);
console.log(tables);
📄 Sample Files and Outputs:
Check out the sample files and their parsed outputs in the GitHub repository.
🔗 Links:
GitHub: https://github.com/jeet-dhandha/xlsx-parse-table
npm: https://www.npmjs.com/package/@libs-jd/xlsx-parse-table
Feel free to share your feedback and contributions. Let's make data parsing easier together! 💪
0
2
0