2017-09-19 10:08:37 +13:00

7 lines
116 B
JavaScript

function Option(name)
{
Unit.call(this);
this.name = name.split("=")[0];
this.value = name.split("=")[1];
}