cbi-units-converter
Version:
Forked from units-converter. A simple utility library to measure and convert between units
60 lines (54 loc) • 1.26 kB
JavaScript
;
function _interopDefault (ex) { return (ex && (typeof ex === 'object') && 'default' in ex) ? ex['default'] : ex; }
var utils = _interopDefault(require('../utils.js'));
const temperature = {
metric: {
baseUnit: 'C',
transform: (val) => { return val / (5 / 9) + 32 },
C: {
name: {
singular: 'degree Celsius',
plural: 'degrees Celsius'
},
to_anchor: 1,
anchor_shift: 0
},
K: {
name: {
singular: 'degree Kelvin',
plural: 'degrees Kelvin'
},
to_anchor: 1,
anchor_shift: 273.15
},
'.1 degC': {
name: {
singular: '.1 degC',
plural: '.1 degCs'
},
to_anchor: 0.1,
anchor_shift: 0
}
},
imperial: {
baseUnit: 'F',
transform: (val) => { return (val - 32) * (5 / 9) },
F: {
name: {
singular: 'degree Fahrenheit',
plural: 'degrees Fahrenheit'
},
to_anchor: 1
},
R: {
name: {
singular: 'degree Rankine',
plural: 'degrees Rankine'
},
to_anchor: 1,
anchor_shift: 459.67
}
}
};
var temperature$1 = utils(temperature);
module.exports = temperature$1;