forked from sheetjs/sheetjs
SheetJS
085150db3b
- merged DBF from js-harb (fixes #407 h/t @joefreire) - updated codepage to 1.8.0 - stub for macro/dialog sheet parsing (fixes #292 h/t @GenoD) - XLSB/XLSM write vbaraw (fixes #606 h/t @johnothetree) - phantomjs demo (fixes #184 h/t @machinewu)
15 lines
393 B
JavaScript
15 lines
393 B
JavaScript
var fs = require('fs');
|
|
var xlsx = require('../../xlsx');
|
|
var page = require('webpage').create();
|
|
|
|
page.open('http://www.google.com', function(status) {
|
|
|
|
var data = fs.read('sheetjs.xlsx', {mode: 'rb', charset: 'utf8'});
|
|
var workbook = xlsx.read(data, {type: 'binary'});
|
|
data = xlsx.utils.sheet_to_csv(workbook.Sheets['SheetJS']);
|
|
console.log("Data: " + data);
|
|
|
|
phantom.exit();
|
|
});
|
|
|