module.exports = {

length: {
    'm': 1,
    'cm': 0.01,
    'mm': 0.001,
    'in': 0.0254,
    'px': 0.0254 / 96,
    'pt': 0.0254 / 72,
    'pc': 0.0254 / 72 * 12
},
duration: {
    's': 1,
    'ms': 0.001
},
angle: {
    'rad': 1 / (2 * Math.PI),
    'deg': 1 / 360,
    'grad': 1 / 400,
    'turn': 1
}

};