mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 00:16:00 +00:00
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
const xlsx = require('xlsx');
|
|
const _ = require('lodash');
|
|
|
|
module.exports = {
|
|
openedReaders: {},
|
|
|
|
analyseExcel_meta: 'get',
|
|
async analyseExcel({ filePath }) {
|
|
const workbook = xlsx.readFile(filePath, { bookSheets: true });
|
|
return workbook.SheetNames;
|
|
},
|
|
};
|