UNPKG

exceljs

Version:

Excel Workbook Manager - Read and Write xlsx and csv Files.

28 lines (22 loc) 535 B
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({attributes}) { this.model = { iconSet: attributes.iconSet, iconId: BaseXform.toIntValue(attributes.iconId), }; } parseClose(name) { return name !== this.tag; } } module.exports = CfIconExtXform;