UNPKG

exceljs

Version:

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

33 lines (31 loc) 605 B
"use strict"; 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; //# sourceMappingURL=picture-xform.js.map