UNPKG

@mui/x-internal-exceljs-fork

Version:

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

26 lines (19 loc) 380 B
const BaseXform = require('../../base-xform'); class FExtXform extends BaseXform { get tag() { return 'xm:f'; } 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 = FExtXform;