forked from sheetjs/sheetjs
SheetJS
d15b81e0e9
- very basic XLSX / XLSM write support with roundtrip tests (XLSB stubs) - reorganized source tree - new XLSB range check ensures that A1 is not emitted for empty sheets - SSF table emitted in output (consistent with js-xls) - CLI supports writing Backwards-incompatible changes: o new Property aliases (see CORE_PROPS and EXT_PROPS) o FILETIME custom properties parsed as JS Dates o `xlsx2csv` -> `xlsx` (and `bin/xlsx{2csv,}.njs`)
14 lines
363 B
JavaScript
14 lines
363 B
JavaScript
function isval(x) { return typeof x !== "undefined" && x !== null; }
|
|
|
|
function keys(o) { return Object.keys(o).filter(function(x) { return o.hasOwnProperty(x); }); }
|
|
|
|
function evert(obj, arr) {
|
|
var o = {};
|
|
keys(obj).forEach(function(k) {
|
|
if(!obj.hasOwnProperty(k)) return;
|
|
if(!arr) o[obj[k]] = k;
|
|
else (o[obj[k]]=o[obj[k]]||[]).push(k);
|
|
});
|
|
return o;
|
|
}
|