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
26 lines (19 loc) • 392 B
JavaScript
const BaseXform = require('../../base-xform');
class SqrefExtXform extends BaseXform {
get tag() {
return 'xm:sqref';
}
render(xmlStream, model) {
xmlStream.leafNode(this.tag, null, model);
}
parseOpen() {
this.model = '';
}
parseText(text) {
this.model += text;
}
parseClose(name) {
return name !== this.tag;
}
}
module.exports = SqrefExtXform;