forked from sheetjs/sheetjs
SheetJS
86d6a093f0
- README and example cleanup - basic XLSB and ODS write support - flow typecheck for ODS file Note: xlsx.js flow fails: https://github.com/facebook/flow/issues/380 - exposed jszip compression (fixes #220, closes #284) README issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #202 | @sao93859 | closes #202 | | #211 | @alexanderchan | closes #211 corrected examples | | #327 | @cskaandorp | changed saveAs example to match write tests | | #424 | @dskrvk | added note about s2roa h/t @LeonardoPatignio | | #496 | @jimmywarting | closes #496 adapted rABS examples with rAAS | ODS file format issues: | id | author | comment | |-----:|:---------------|:---------------------------------------------| | #148 | @user4815162342| closes #148 h/t @ziacik | | #166 | @paulproteus | closes #166 rudimentary ODS write support | | #177 | @ziacik | closes #177 | | #179 | @ziacik | closes #179 use JSON when available | | #317 | @ziacik | closes #317 | | #328 | @think01 | closes #328 | | #383 | @mdamt | closes #383 duplicate cells should be copied | | #430 | @RB-Lab | closes #430 | | #546 | @lgodard | closes #546 thanks to other changes |
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
function getdata(data) {
|
|
if(!data) return null;
|
|
if(data.data) return data.data;
|
|
if(data.asNodeBuffer && has_buf) return data.asNodeBuffer().toString('binary');
|
|
if(data.asBinary) return data.asBinary();
|
|
if(data._data && data._data.getContent) return cc2str(Array.prototype.slice.call(data._data.getContent(),0));
|
|
return null;
|
|
}
|
|
|
|
function safegetzipfile(zip, file) {
|
|
var f = file; if(zip.files[f]) return zip.files[f];
|
|
f = file.toLowerCase(); if(zip.files[f]) return zip.files[f];
|
|
f = f.replace(/\//g,'\\'); if(zip.files[f]) return zip.files[f];
|
|
return null;
|
|
}
|
|
|
|
function getzipfile(zip, file) {
|
|
var o = safegetzipfile(zip, file);
|
|
if(o == null) throw new Error("Cannot find file " + file + " in zip");
|
|
return o;
|
|
}
|
|
|
|
function getzipdata(zip, file, safe/*:?boolean*/) {
|
|
if(!safe) return getdata(getzipfile(zip, file));
|
|
if(!file) return null;
|
|
try { return getzipdata(zip, file); } catch(e) { return null; }
|
|
}
|
|
|
|
var _fs, jszip;
|
|
/*:: declare var JSZip:any; */
|
|
if(typeof JSZip !== 'undefined') jszip = JSZip;
|
|
if (typeof exports !== 'undefined') {
|
|
if (typeof module !== 'undefined' && module.exports) {
|
|
if(has_buf && typeof jszip === 'undefined') jszip = require('js'+'zip');
|
|
if(typeof jszip === 'undefined') jszip = require('./js'+'zip').JSZip;
|
|
_fs = require('f'+'s');
|
|
}
|
|
}
|