forked from sheetjs/sheetjs
SheetJS
99b513875b
- removed CFB test (fixes #654 h/t @wolfgang42) - book_append_sheet optional name (fixes #652 h/t @jomel) - strict mode compliance (h/t @simon-p-r @loongdefect @appersonj) - flow fixes (h/t @jameskraus for help with Date#getYear) - fixed minifier to generate ExtendScript-compatible code
9 lines
296 B
JavaScript
9 lines
296 B
JavaScript
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
/* vim: set ts=2: */
|
|
/*jshint -W041 */
|
|
/*jshint funcscope:true, eqnull:true, loopfunc:true */
|
|
/*exported XLSX */
|
|
/*global global, exports, module, require:false, process:false, Buffer:false */
|
|
var XLSX = {};
|
|
(function make_xlsx(XLSX){
|