UNPKG

datapilot-cli

Version:

Enterprise-grade streaming multi-format data analysis with comprehensive statistical insights and intelligent relationship detection - supports CSV, JSON, Excel, TSV, Parquet - memory-efficient, cross-platform

27 lines (21 loc) 489 B
const BaseXform = require('../base-xform'); class WorkbookCalcPropertiesXform extends BaseXform { render(xmlStream, model) { xmlStream.leafNode('calcPr', { calcId: 171027, fullCalcOnLoad: model.fullCalcOnLoad ? 1 : undefined, }); } parseOpen(node) { if (node.name === 'calcPr') { this.model = {}; return true; } return false; } parseText() {} parseClose() { return false; } } module.exports = WorkbookCalcPropertiesXform;