essentially the API should be
volume.pints(5, "Imperial").toQuarts("metric")
also the it might be needed to set a default measuring system and change it on the fly before initializing a unit, something like
metricMezur = require('mezur')({system: "metric"})
and then initialize the units with volume = metricMezur(volUnits)
and then volume.pints(5) can have default of the the measuring system
WIP
essentially the API should be
volume.pints(5, "Imperial").toQuarts("metric")also the it might be needed to set a default measuring system and change it on the fly before initializing a unit, something like
metricMezur = require('mezur')({system: "metric"})and then initialize the units with
volume = metricMezur(volUnits)and then
volume.pints(5)can have default of the the measuring systemWIP