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
29 lines (27 loc) • 595 B
JavaScript
;
const BaseXform = require('../../base-xform');
class CfIconExtXform extends BaseXform {
get tag() {
return 'x14:cfIcon';
}
render(xmlStream, model) {
xmlStream.leafNode(this.tag, {
iconSet: model.iconSet,
iconId: model.iconId
});
}
parseOpen(_ref) {
let {
attributes
} = _ref;
this.model = {
iconSet: attributes.iconSet,
iconId: BaseXform.toIntValue(attributes.iconId)
};
}
parseClose(name) {
return name !== this.tag;
}
}
module.exports = CfIconExtXform;
//# sourceMappingURL=cf-icon-ext-xform.js.map