forked from sheetjs/sheetjs
SheetJS
a8736580a5
- updated SSF to 0.9.2 - XLSB style records and number format writing - CSV avoid parseFloat (fixes #646 h/t @jabbermarky) - CSV recognize mac line ending (fixes #648 h/t @charlesread) - BIFF2 format table refactored to align with SSF - BIFF5 image data exposure - SSF custom format auto table update (fixes #267 h/t @Fangmingdu) - eslint more checks - browser test timeout extended to 10 seconds
9 lines
273 B
JavaScript
9 lines
273 B
JavaScript
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
/* vim: set ts=2: */
|
|
/*jshint -W041 */
|
|
/*jshint funcscope:true, eqnull:true */
|
|
/*exported XLSX */
|
|
/*global exports, module, require:false, process:false, Buffer:false */
|
|
var XLSX = {};
|
|
(function make_xlsx(XLSX){
|