standaardisation updates
This commit is contained in:
35
convert/definitions/voltage.js
Normal file
35
convert/definitions/voltage.js
Normal file
@@ -0,0 +1,35 @@
|
||||
var voltage;
|
||||
|
||||
voltage = {
|
||||
V: {
|
||||
name: {
|
||||
singular: 'Volt'
|
||||
, plural: 'Volts'
|
||||
}
|
||||
, to_anchor: 1
|
||||
}
|
||||
, mV: {
|
||||
name: {
|
||||
singular: 'Millivolt'
|
||||
, plural: 'Millivolts'
|
||||
}
|
||||
, to_anchor: .001
|
||||
}
|
||||
, kV: {
|
||||
name: {
|
||||
singular: 'Kilovolt'
|
||||
, plural: 'Kilovolts'
|
||||
}
|
||||
, to_anchor: 1000
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
metric: voltage
|
||||
, _anchors: {
|
||||
metric: {
|
||||
unit: 'V'
|
||||
, ratio: 1
|
||||
}
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user