Skip to content

Instantly share code, notes, and snippets.

@mani95lisa
Created September 1, 2014 05:57
Show Gist options
  • Save mani95lisa/8316a2281b5f84789df8 to your computer and use it in GitHub Desktop.
Save mani95lisa/8316a2281b5f84789df8 to your computer and use it in GitHub Desktop.
// Generated by CoffeeScript 1.7.1
(function() {
var XLSX, sheet_from_array_of_arrays, ws_name;
XLSX = require('xlsx');
sheet_from_array_of_arrays = function(data, opts) {
var C, R, cell, cell_ref, range, ws;
ws = {};
range = {
s: {
c: 10000000,
r: 10000000
},
e: {
c: 0,
r: 0
}
};
R = 0;
while (R !== data.length) {
C = 0;
while (C !== data[R].length) {
if (range.s.r > R) {
range.s.r = R;
}
if (range.s.c > C) {
range.s.c = C;
}
if (range.e.r < R) {
range.e.r = R;
}
if (range.e.c < C) {
range.e.c = C;
}
cell = {
v: data[R][C]
};
if (!cell.v) {
cell.v = '';
}
cell_ref = XLSX.utils.encode_cell({
c: C,
r: R
});
if (typeof cell.v === "number") {
cell.t = "n";
} else if (typeof cell.v === "boolean") {
cell.t = "b";
} else {
cell.t = "s";
}
ws[cell_ref] = cell;
++C;
}
++R;
}
if (range.s.c < 10000000) {
ws["!ref"] = XLSX.utils.encode_range(range);
}
return ws;
};
ws_name = "Data";
module.exports["export"] = function(data, filename) {
var wb, ws;
console.log(XLSX.version);
wb = {
SheetNames: [],
Sheets: {}
};
console.log(data.length);
ws = sheet_from_array_of_arrays(data);
wb.SheetNames.push(ws_name);
wb.Sheets[ws_name] = ws;
return XLSX.write(wb, {
type: 'buffer'
});
};
}).call(this);
//# sourceMappingURL=exportXLSX.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment