UNPKG

exceljs

Version:

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

34 lines (27 loc) 572 B
const BaseXform = require('../base-xform'); class PictureXform extends BaseXform { get tag() { return 'picture'; } render(xmlStream, model) { if (model) { xmlStream.leafNode(this.tag, {'r:id': model.rId}); } } parseOpen(node) { switch (node.name) { case this.tag: this.model = { rId: node.attributes['r:id'], }; return true; default: return false; } } parseText() {} parseClose() { return false; } } module.exports = PictureXform;