aboutsummaryrefslogtreecommitdiff
path: root/modern/src/common/formatter.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/common/formatter.js')
-rw-r--r--modern/src/common/formatter.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/modern/src/common/formatter.js b/modern/src/common/formatter.js
index b2f305a..e41e591 100644
--- a/modern/src/common/formatter.js
+++ b/modern/src/common/formatter.js
@@ -80,26 +80,3 @@ export const formatVolume = (value, unit) => {
export const formatHours = (value) => {
return moment.duration(value).humanize();
};
-
-const speedConverter = (value, unit) => {
- switch (unit) {
- case 'kmh':
- return (value * 1.852).toFixed(2);
- case 'mph':
- return (value * 1.15078).toFixed(2);
- case 'kn':
- default:
- return (value * 1).toFixed(2);
- }
-};
-
-export const getConverter = (key) => {
- switch (key) {
- case 'speed':
- return speedConverter;
- default:
- return function (value) {
- return value;
- }
- }
-};