1
forked from sheetjs/sheetjs

updating to 0.7.1

This commit is contained in:
SheetJS 2014-05-15 20:03:55 -07:00
parent 5b28f5cc3f
commit 44dae295a5
2 changed files with 12 additions and 13 deletions

2
xlsx.core.min.js vendored

File diff suppressed because one or more lines are too long

@ -2,7 +2,7 @@
/* vim: set ts=2: */
var XLSX = {};
(function(XLSX){
XLSX.version = '0.7.0';
XLSX.version = '0.7.1';
var current_codepage = 1252, current_cptable;
if(typeof module !== "undefined" && typeof require !== 'undefined') {
if(typeof cptable === 'undefined') cptable = require('codepage');
@ -1648,8 +1648,7 @@ function write_numFmts(NF, opts) {
var o = [];
o.push("<numFmts>");
[[5,8],[23,26],[41,44],[63,66],[164,392]].forEach(function(r) {
for(var i = r[0]; i <= r[1]; ++i) if(NF[i])
o.push(writextag('numFmt',null,{numFmtId:i,formatCode:escapexml(NF[i])}));
for(var i = r[0]; i <= r[1]; ++i) if(NF[i]) o.push(writextag('numFmt',null,{numFmtId:i,formatCode:escapexml(NF[i])}));
});
o.push("</numFmts>");
if(o.length === 2) return "";