get height()

in packages/svg-mixer/lib/image.js [44:47]


  get height() {
    const { height, viewBox } = this._tree.root.attrs || {};
    return height || viewBox ? parseFloat(height || viewBox.split(' ')[3]) : undefined; // eslint-disable-line no-magic-numbers
  }