forked from sheetjs/sheetjs
SheetJS
009946339c
- eliminated functional constructs in hot functions - format try-catch block extracted into new function - cpexcel + codepage updated to 1.2.0 - more efficient (and correct) clean implementation of RGB/HSL/tint algorithms - xlsx binary --all option enables every extra formatting and saving option - column widths parsed and saved (requires cellStyles:true)
6 lines
201 B
JavaScript
6 lines
201 B
JavaScript
/* [MS-XLSB] 2.5.97.4 CellParsedFormula TODO: use similar logic to js-xls */
|
|
var parse_CellParsedFormula = function(data, length) {
|
|
var cce = data.read_shift(4);
|
|
return parsenoop(data, length-4);
|
|
};
|