移除 Flag 引數

refactorgram

function setDimension(name, value) {
  if (name === "height") {
    this._height = value;
    return;
  }
  if (name === "width") {
    this._width = value;
    return;
  }
}

image/svg+xml

function setHeight(value) {this._height = value;}
function setWidth (value) {this._width = value;}

別名 以明確方法取代參數