forked from sheetjs/sheetjs
SheetJS
8bd3c624ac
run `make` to combine the files. Files are named in numerical order based on the relative placement
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
|
|
if(typeof require !== 'undefined' && typeof exports !== 'undefined') {
|
|
exports.read = XLSX.read;
|
|
exports.readFile = XLSX.readFile;
|
|
exports.utils = utils;
|
|
exports.main = function(args) {
|
|
var zip = XLSX.read(args[0], {type:'file'});
|
|
console.log(zip.Sheets);
|
|
};
|
|
if(typeof module !== 'undefined' && require.main === module)
|
|
exports.main(process.argv.slice(2));
|
|
}
|